diff --git a/FlexDXCluster.exe b/FlexDXCluster.exe deleted file mode 100644 index 5a20260..0000000 Binary files a/FlexDXCluster.exe and /dev/null differ diff --git a/HTTPServer.go b/HTTPServer.go new file mode 100644 index 0000000..4b65567 --- /dev/null +++ b/HTTPServer.go @@ -0,0 +1,70 @@ +package main + +import ( + "html/template" + "net/http" + + "github.com/gorilla/mux" + log "github.com/sirupsen/logrus" +) + +var tmpl *template.Template + +type HTTPServer struct { + router *mux.Router + Log4OMRepo Log4OMContactsRepository + Repo FlexDXClusterRepository + Log *log.Logger +} + +func NewHTTPServer(cRepo Log4OMContactsRepository, fRepo FlexDXClusterRepository, log *log.Logger) *HTTPServer { + + gRouter := mux.NewRouter() + + return &HTTPServer{ + router: gRouter, + Log4OMRepo: cRepo, + Repo: fRepo, + Log: log, + } +} + +func (s *HTTPServer) SetRoutes() { + s.router.HandleFunc("/", s.Homepage) + s.router.HandleFunc("/spots", s.GetSpots).Methods("GET") + s.router.HandleFunc("/spotscount", s.GetSpotsCount).Methods("GET") + s.router.HandleFunc("/spotters", s.GetSpotters).Methods("GET") +} + +func (s *HTTPServer) StartHTTPServer() { + tmpl, _ = template.ParseGlob("templates/*.html") + s.SetRoutes() + s.Log.Infof("starting HTTP server on %s:%s", Cfg.HTTPServer.Host, Cfg.HTTPServer.Port) + err := http.ListenAndServe(Cfg.HTTPServer.Host+":"+Cfg.HTTPServer.Port, s.router) + if err != nil { + s.Log.Warn("cannot start HTTP server: ", err) + } +} + +func (s *HTTPServer) Homepage(w http.ResponseWriter, r *http.Request) { + err := tmpl.ExecuteTemplate(w, "home.html", nil) + if err != nil { + s.Log.Error("error executing home template: ", err) + } +} + +func (s *HTTPServer) GetSpots(w http.ResponseWriter, r *http.Request) { + spots := s.Repo.GetAllSpots("25") + tmpl.ExecuteTemplate(w, "spot", spots) +} + +func (s *HTTPServer) GetSpotsCount(w http.ResponseWriter, r *http.Request) { + spots := s.Repo.GetAllSpots("0") + count := len(spots) + tmpl.ExecuteTemplate(w, "spotCount", count) +} + +func (s *HTTPServer) GetSpotters(w http.ResponseWriter, r *http.Request) { + spotters := s.Repo.GetSpotters() + tmpl.ExecuteTemplate(w, "spotters", spotters) +} diff --git a/TCPClient.go b/TCPClient.go index 71432e6..6f36883 100644 --- a/TCPClient.go +++ b/TCPClient.go @@ -12,6 +12,7 @@ import ( ) var spotRe *regexp.Regexp = regexp.MustCompile(`DX\sde\s([\w\d]+).*:\s+(\d+.\d)\s+([\w\d]+)\s+(CW|SSB|FT8|FT4|RTTY|USB|LSB)?\s+(.*)\s\s\s+([\d]+\w{1})`) +var count int = 0 type TCPClient struct { Login string @@ -67,7 +68,7 @@ func (c *TCPClient) StartClient() { if err != nil { c.Log.Error("cannot connect to Telnet Client:", err) } - c.Log.Infof("connected to %s:%s", c.Address, c.Port) + c.Log.Infof("connected to DX cluster %s:%s", c.Address, c.Port) err = c.Conn.SetKeepAlive(true) if err != nil { @@ -77,6 +78,14 @@ func (c *TCPClient) StartClient() { c.Reader = bufio.NewReader(c.Conn) c.Writer = bufio.NewWriter(c.Conn) + go func() { + for message := range c.TCPServer.CmdChan { + message := message + "\n" + c.Log.Infof("Received DX Command: %s", message) + c.WriteString(message) + } + }() + go c.ReadLine() } @@ -107,6 +116,7 @@ func (c *TCPClient) SetFilters() { } func (c *TCPClient) ReadLine() { + for { message, err := c.Reader.ReadString('\n') if err != nil { @@ -125,6 +135,11 @@ func (c *TCPClient) ReadLine() { // Send the spot message to TCP server if len(c.TCPServer.Clients) > 0 { + if count == 0 { + // wait 3 seconds before sending messages to allow the client to connect + time.Sleep(time.Second * 3) + count++ + } c.MsgChan <- message } } @@ -139,3 +154,12 @@ func (tc *TCPClient) Write(data []byte) (n int, err error) { return } + +func (tc *TCPClient) WriteString(data string) (n int, err error) { + n, err = tc.Writer.Write([]byte(data)) + if err == nil { + err = tc.Writer.Flush() + } + + return +} diff --git a/TCPServer.go b/TCPServer.go index 4720240..c64c728 100644 --- a/TCPServer.go +++ b/TCPServer.go @@ -92,20 +92,19 @@ func (s *TCPServer) handleConnection() { message = strings.TrimSpace(message) - s.Log.Infof("Message reçu du client: %s\n", message) - - switch message { - case "bye": + // if message is by then disconnect + if message == "bye" { s.Mutex.Lock() delete(s.Clients, s.Conn) s.Mutex.Unlock() s.Log.Infof("client %s disconnected", s.Conn.RemoteAddr().String()) - return - case "SH/DX 30": - return - default: - s.Write("cannot identify command\n") } + + if strings.Contains(message, "DX") && message != "SH/DX 30" { + // send DX spot to the client + s.CmdChan <- message + } + } } diff --git a/config.go b/config.go index be39ac3..d142b94 100644 --- a/config.go +++ b/config.go @@ -38,6 +38,11 @@ type Config struct { Host string `yaml:"host"` Port string `yaml:"port"` } `yaml:"telnet"` + + HTTPServer struct { + Host string `yaml:"host"` + Port string `yaml:"port"` + } `yaml:"httpserver"` } func NewConfig(configPath string) error { diff --git a/config.yml b/config.yml index f6c859d..7f17824 100644 --- a/config.yml +++ b/config.yml @@ -6,9 +6,9 @@ sqlite: cluster: server: dxc.k0xm.net port: 7300 - login: xv9q-5 + login: xv9q-2 skimmer: true - ft8: false + ft8: true flex: ip: 10.10.10.120 spot_life: 600 @@ -16,4 +16,7 @@ clublog: api: 5767f19333363a9ef432ee9cd4141fe76b8adf38 telnet: host: 0.0.0.0 - port: 7301 \ No newline at end of file + port: 7301 +httpserver: + host: 0.0.0.0 + port: 3000 \ No newline at end of file diff --git a/database.go b/database.go index df777b3..dfaa8e7 100644 --- a/database.go +++ b/database.go @@ -20,7 +20,12 @@ type Contact struct { Country string } -type ContactsRepository struct { +type Spotter struct { + Spotter string + NumberofSpots string +} + +type Log4OMContactsRepository struct { db *sql.DB Log *log.Logger } @@ -30,12 +35,12 @@ type FlexDXClusterRepository struct { Log *log.Logger } -func NewContactsRepository(filePath string, log *log.Logger) *ContactsRepository { +func NewLog4OMContactsRepository(filePath string, log *log.Logger) *Log4OMContactsRepository { db, err := sql.Open("sqlite3", filePath) if err != nil { fmt.Println("Cannot open db", err) } - return &ContactsRepository{ + return &Log4OMContactsRepository{ db: db, Log: log} } @@ -84,13 +89,15 @@ func NewFlexDXDatabase(filePath string, log *log.Logger) *FlexDXClusterRepositor } } -func (r *ContactsRepository) ListByCountry(countryID string) ([]*Contact, error) { +func (r *Log4OMContactsRepository) ListByCountry(countryID string) ([]*Contact, error) { rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ?", countryID) if err != nil { log.Error("could not query database", err) return nil, err } + defer rows.Close() + contacts := []*Contact{} for rows.Next() { c := Contact{} @@ -103,7 +110,7 @@ func (r *ContactsRepository) ListByCountry(countryID string) ([]*Contact, error) return contacts, nil } -func (r *ContactsRepository) ListByCountryMode(countryID string, mode string) ([]*Contact, error) { +func (r *Log4OMContactsRepository) ListByCountryMode(countryID string, mode string) ([]*Contact, error) { modeUSB := "USB" modeLSB := "LSB" @@ -116,6 +123,8 @@ func (r *ContactsRepository) ListByCountryMode(countryID string, mode string) ([ return nil, err } + defer rows.Close() + contacts := []*Contact{} for rows.Next() { c := Contact{} @@ -135,6 +144,8 @@ func (r *ContactsRepository) ListByCountryMode(countryID string, mode string) ([ return nil, err } + defer rows.Close() + contacts := []*Contact{} for rows.Next() { c := Contact{} @@ -149,13 +160,15 @@ func (r *ContactsRepository) ListByCountryMode(countryID string, mode string) ([ } } -func (r *ContactsRepository) ListByCountryBand(countryID string, band string) ([]*Contact, error) { +func (r *Log4OMContactsRepository) ListByCountryBand(countryID string, band string) ([]*Contact, error) { rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ? AND band = ?", countryID, band) if err != nil { fmt.Println(err) return nil, err } + defer rows.Close() + contacts := []*Contact{} for rows.Next() { c := Contact{} @@ -168,13 +181,15 @@ func (r *ContactsRepository) ListByCountryBand(countryID string, band string) ([ return contacts, nil } -func (r *ContactsRepository) ListByCallSign(callSign string, band string, mode string) ([]*Contact, error) { +func (r *Log4OMContactsRepository) ListByCallSign(callSign string, band string, mode string) ([]*Contact, error) { rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE callsign = ? AND band = ? AND mode = ?", callSign, band, mode) if err != nil { fmt.Println(err) return nil, err } + defer rows.Close() + contacts := []*Contact{} for rows.Next() { c := Contact{} @@ -187,13 +202,76 @@ func (r *ContactsRepository) ListByCallSign(callSign string, band string, mode s return contacts, nil } +func (r *FlexDXClusterRepository) GetAllSpots(limit string) []FlexSpot { + + Spots := []FlexSpot{} + + var query string + + if limit == "0" { + query = "SELECT * from spots ORDER BY id DESC" + } else { + query = fmt.Sprintf("SELECT * from spots ORDER BY id DESC LIMIT %s", limit) + } + + rows, err := r.db.Query(query) + + if err != nil { + r.Log.Error(err) + return nil + } + + defer rows.Close() + + s := FlexSpot{} + for rows.Next() { + if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.UTCTime, &s.TimeStamp, &s.LifeTime, &s.Priority, + &s.Comment, &s.Color, &s.BackgroundColor); err != nil { + fmt.Println(err) + return nil + } + + Spots = append(Spots, s) + } + + return Spots +} + +func (r *FlexDXClusterRepository) GetSpotters() []Spotter { + + sList := []Spotter{} + + rows, err := r.db.Query("select spotter, count(*) as occurences from spots group by spotter order by occurences desc, spotter limit 3") + + if err != nil { + r.Log.Error(err) + return nil + } + + defer rows.Close() + + s := Spotter{} + for rows.Next() { + if err := rows.Scan(&s.Spotter, &s.NumberofSpots); err != nil { + fmt.Println(err) + return nil + } + + sList = append(sList, s) + } + + return sList +} + func (r *FlexDXClusterRepository) FindDXSameBand(spot FlexSpot) (*FlexSpot, error) { rows, err := r.db.Query("SELECT * from spots WHERE dx = ? AND band = ?", spot.DX, spot.Band) if err != nil { - fmt.Println(err) + r.Log.Error(err) return nil, err } + defer rows.Close() + s := FlexSpot{} for rows.Next() { if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.UTCTime, &s.TimeStamp, &s.LifeTime, &s.Priority, @@ -219,8 +297,14 @@ func (r *FlexDXClusterRepository) CreateSpot(spot FlexSpot) { } -func (r *FlexDXClusterRepository) UpdateSpotSameBand(spot FlexSpot) { - return +func (r *FlexDXClusterRepository) UpdateSpotSameBand(spot FlexSpot) error { + _, err := r.db.Exec(`UPDATE spots SET commandNumber = ?, DX = ?, freqMhz = ?, freqHz = ?, band = ?, mode = ?, spotter = ?, flexMode = ?, source = ?, time = ?, timestamp = ?, lifeTime = ?, priority = ?, comment = ?, color = ?, backgroundColor = ? WHERE DX = ? AND band = ?`, + spot.CommandNumber, spot.DX, spot.FrequencyMhz, spot.FrequencyHz, spot.Band, spot.Mode, spot.SpotterCallsign, spot.FlexMode, spot.Source, spot.UTCTime, spot.TimeStamp, spot.LifeTime, spot.Priority, spot.Comment, spot.Color, spot.BackgroundColor, spot.DX, spot.Band) + if err != nil { + r.Log.Errorf("could not update database: %s", err) + return err + } + return nil } func (r *FlexDXClusterRepository) FindSpotByCommandNumber(commandNumber string) (*FlexSpot, error) { @@ -230,6 +314,8 @@ func (r *FlexDXClusterRepository) FindSpotByCommandNumber(commandNumber string) return nil, err } + defer rows.Close() + s := FlexSpot{} for rows.Next() { if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.UTCTime, &s.TimeStamp, &s.LifeTime, &s.Priority, @@ -248,6 +334,8 @@ func (r *FlexDXClusterRepository) FindSpotByFlexSpotNumber(spotNumber string) (* return nil, err } + defer rows.Close() + s := FlexSpot{} for rows.Next() { if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.UTCTime, &s.TimeStamp, &s.LifeTime, &s.Priority, @@ -266,6 +354,8 @@ func (r *FlexDXClusterRepository) UpdateFlexSpotNumberByID(flexSpotNumber string r.Log.Errorf("could not update database: %s", err) } + defer rows.Close() + s := FlexSpot{} for rows.Next() { if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.UTCTime, &s.TimeStamp, &s.LifeTime, &s.Priority, diff --git a/flex.sqlite b/flex.sqlite index 3bf4f70..7b48602 100644 Binary files a/flex.sqlite and b/flex.sqlite differ diff --git a/flexradio.go b/flexradio.go index cec7712..88f2601 100644 --- a/flexradio.go +++ b/flexradio.go @@ -78,7 +78,7 @@ func (fc *FlexClient) StartFlexClient() { fc.Log.Error("could not connect to flex radio, exiting...", err) os.Exit(1) } - fc.Log.Infof("connected to %s:%s", fc.Address, fc.Port) + fc.Log.Infof("connected to flex radio at %s:%s", fc.Address, fc.Port) go func() { for message := range fc.SpotChan { @@ -103,6 +103,8 @@ func (fc *FlexClient) StartFlexClient() { clrSpotAllCmd := fmt.Sprintf("C%v|spot clear", CommandNumber) fc.Write(clrSpotAllCmd) CommandNumber++ + + fc.Log.Info("Subscribed to spot on FlexRadio and Deleted all spots from panadapter") } func (fc *FlexClient) SendSpottoFlex(spot TelnetSpot) { @@ -151,8 +153,14 @@ func (fc *FlexClient) SendSpottoFlex(spot TelnetSpot) { flexSpot.Priority = "5" } + if spot.DX == Cfg.SQLite.Callsign { + flexSpot.Color = "#ff0000" + flexSpot.Priority = "2" + flexSpot.BackgroundColor = "#000000" + } + flexSpot.Comment = strings.ReplaceAll(flexSpot.Comment, " ", "\u00A0") - flexSpot.Comment = flexSpot.Comment + "\u00A0" + "[" + flexSpot.Mode + "]" + flexSpot.Comment = flexSpot.Comment + "\u00A0" + "[" + flexSpot.Mode + "] [" + flexSpot.SpotterCallsign + "]" srcFlexSpot, err := fc.Repo.FindDXSameBand(flexSpot) if err != nil { @@ -163,29 +171,29 @@ func (fc *FlexClient) SendSpottoFlex(spot TelnetSpot) { fc.Repo.CreateSpot(flexSpot) stringSpot := fmt.Sprintf("C%v|spot add rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, flexSpot.FrequencyMhz, flexSpot.DX, flexSpot.Mode, flexSpot.Source, flexSpot.SpotterCallsign, flexSpot.TimeStamp, flexSpot.LifeTime, flexSpot.Comment, flexSpot.Color, flexSpot.BackgroundColor, flexSpot.Priority) + CommandNumber++ fc.SendSpot(stringSpot) + } else if srcFlexSpot.DX != "" && srcFlexSpot.Band == flexSpot.Band && srcFlexSpot.FrequencyMhz != flexSpot.FrequencyMhz { fc.Repo.UpdateSpotSameBand(flexSpot) - stringSpot := fmt.Sprintf("C%v|spot set %v rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, srcFlexSpot.CommandNumber, flexSpot.FrequencyMhz, + stringSpot := fmt.Sprintf("C%v|spot set %v rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, srcFlexSpot.FlexSpotNumber, flexSpot.FrequencyMhz, flexSpot.DX, flexSpot.Mode, flexSpot.Source, flexSpot.SpotterCallsign, flexSpot.TimeStamp, flexSpot.LifeTime, flexSpot.Comment, flexSpot.Color, flexSpot.BackgroundColor, flexSpot.Priority) CommandNumber++ - stringDelete := fmt.Sprintf("C%v|spot remove %v", CommandNumber, srcFlexSpot.FlexSpotNumber) - fc.DeleteAndSendSpot(stringSpot, stringDelete) + fc.SendSpot(stringSpot) + + } else if srcFlexSpot.DX != "" && srcFlexSpot.Band != flexSpot.Band { + fc.Repo.CreateSpot(flexSpot) + stringSpot := fmt.Sprintf("C%v|spot add rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, flexSpot.FrequencyMhz, + flexSpot.DX, flexSpot.Mode, flexSpot.Source, flexSpot.SpotterCallsign, flexSpot.TimeStamp, flexSpot.LifeTime, flexSpot.Comment, flexSpot.Color, flexSpot.BackgroundColor, flexSpot.Priority) + CommandNumber++ + fc.SendSpot(stringSpot) } - - CommandNumber++ - } func (fc *FlexClient) SendSpot(stringSpot string) { fc.Write(stringSpot) } -func (fc *FlexClient) DeleteAndSendSpot(stringSpot string, deleteSpot string) { - fc.Write(deleteSpot) - fc.Write(stringSpot) -} - func (fc *FlexClient) ReadLine() { for { @@ -195,10 +203,8 @@ func (fc *FlexClient) ReadLine() { os.Exit(1) } - // msgRaw := strings.TrimSpace(message) - // fc.Log.Info(msgRaw) + // fc.Log.Info(message) - // Response when spot is added regRespSpot := *regexp.MustCompile(`R(\d+)\|0\|(\d+)\n`) respSpot := regRespSpot.FindStringSubmatch(message) @@ -232,8 +238,9 @@ func (fc *FlexClient) ReadLine() { respDelete := regSpotDeleted.FindStringSubmatch(message) if len(respDelete) > 0 { + spot, _ := fc.Repo.FindSpotByFlexSpotNumber(respDelete[1]) fc.Repo.DeleteSpotByFlexSpotNumber(respDelete[1]) - fc.Log.Infof("deleted spot %v from database", respDelete[1]) + fc.Log.Infof("Spot: DX: %s - Spotter: %s - Freq: %s - Band: %s - FlexID: %v deleted from database", spot.DX, spot.SpotterCallsign, spot.FrequencyHz, spot.Band, respDelete[1]) } } } diff --git a/flexradio.log b/flexradio.log index 5284cce..9cb4041 100644 --- a/flexradio.log +++ b/flexradio.log @@ -1,737 +1,131052 @@ -[24-09-2024 11:25:50] INFO config loaded. -[24-09-2024 11:25:50] INFO Callsign: XV9Q -[24-09-2024 11:25:50] INFO deleting existing database -[24-09-2024 11:25:50] INFO Opening SQLite database -[24-09-2024 11:25:50] INFO telnet server listening on 0.0.0.0:7301 -[24-09-2024 11:25:50] INFO connected to 10.10.10.120:4992 -[24-09-2024 11:25:50] INFO V1.4.0.0 -[24-09-2024 11:25:50] INFO H55359AD4 -[24-09-2024 11:25:50] INFO M10000001|Client connected from IP 10.10.10.106 -[24-09-2024 11:25:50] INFO S55359AD4|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:25:50] INFO S55359AD4|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:25:50] INFO S55359AD4|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:25:50] INFO S55359AD4|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:25:50] INFO S55359AD4|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:25:50] INFO S55359AD4|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:25:50] INFO S55359AD4|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:25:50] INFO S55359AD4|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:25:50] INFO S55359AD4|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:25:50] INFO R1|0| -[24-09-2024 11:25:50] INFO R2|0| -[24-09-2024 11:25:51] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:25:51] INFO connected to dxc.k0xm.net:7300 -[24-09-2024 11:25:51] INFO Found login prompt...sending callsign -[24-09-2024 11:25:53] INFO Skimmer is on as defined in the config file -[24-09-2024 11:25:53] INFO FT8 is off as defined in the config file -[24-09-2024 11:25:54] INFO DX: VR2B - Spotter: W6YX - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 47 dB 19 WPM NCDXF BCN - Time: 0425Z - DXCC: 321 -[24-09-2024 11:25:54] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:25:54] INFO S55359AD4|spot 28 callsign=VR2B rx_freq=21.150000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W6YX timestamp=1727151954 lifetime_seconds=30 priority=5 comment=47 dB 19 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:25:54] INFO R3|0|28 -[24-09-2024 11:25:55] INFO DX: PC8X - Spotter: RK3TD - Freq: 14039.0 - Band: 20M - Mode: CW - Comment: 26 dB 23 WPM CQ - Time: 0425Z - DXCC: 263 -[24-09-2024 11:25:55] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:25:55] INFO S55359AD4|spot 29 callsign=PC8X rx_freq=14.039000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RK3TD timestamp=1727151955 lifetime_seconds=30 priority=5 comment=26 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:25:55] INFO R4|0|29 -[24-09-2024 11:25:55] INFO (** New Band **) DX: TM44LG - Spotter: W1NT - Freq: 3520.0 - Band: 80M - Mode: CW - Comment: 11 dB 28 WPM CQ - Time: 0425Z - DXCC: 227 -[24-09-2024 11:25:55] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:25:55] INFO S55359AD4|spot 30 callsign=TM44LG rx_freq=3.520000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727151955 lifetime_seconds=30 priority=2 comment=11 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:25:55] INFO R5|0|30 -[24-09-2024 11:26:00] INFO DX: K6KWV - Spotter: KA7OEI - Freq: 18087.0 - Band: 17M - Mode: CW - Comment: 21 dB 18 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:00] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:00] INFO S55359AD4|spot 31 callsign=K6KWV rx_freq=18.087000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=KA7OEI timestamp=1727151960 lifetime_seconds=30 priority=5 comment=21 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:00] INFO R6|0|31 -[24-09-2024 11:26:07] INFO (** New Band **) DX: OK1ABE - Spotter: SQ5OUO - Freq: 3549.0 - Band: 80M - Mode: CW - Comment: 20 dB 29 WPM CQ - Time: 0426Z - DXCC: 503 -[24-09-2024 11:26:07] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:07] INFO S55359AD4|spot 32 callsign=OK1ABE rx_freq=3.549000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=SQ5OUO timestamp=1727151967 lifetime_seconds=30 priority=2 comment=20 dB 29 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:07] INFO R7|0|32 -[24-09-2024 11:26:08] INFO DX: KB3NSK - Spotter: S53WW - Freq: 14038.0 - Band: 20M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:08] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:08] INFO S55359AD4|spot 33 callsign=KB3NSK rx_freq=14.038000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=S53WW timestamp=1727151968 lifetime_seconds=30 priority=5 comment=9 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:08] INFO R8|0|33 -[24-09-2024 11:26:14] INFO (** New Band **) DX: DL8ABG - Spotter: F4GOU - Freq: 3539.2 - Band: 80M - Mode: CW - Comment: 25 dB 24 WPM CQ - Time: 0426Z - DXCC: 230 -[24-09-2024 11:26:14] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:14] INFO S55359AD4|spot 34 callsign=DL8ABG rx_freq=3.539200 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=F4GOU timestamp=1727151974 lifetime_seconds=30 priority=2 comment=25 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:14] INFO R9|0|34 -[24-09-2024 11:26:15] INFO (** New Band **) DX: DL8ABG - Spotter: DF7GB - Freq: 3539.2 - Band: 80M - Mode: CW - Comment: 24 dB 24 WPM CQ - Time: 0426Z - DXCC: 230 -[24-09-2024 11:26:15] INFO Tue Sep 24 11:26:14 +07 2024 -[24-09-2024 11:26:16] INFO (** New Band **) DX: VE7UTS - Spotter: VE7CC - Freq: 50056.6 - Band: N/A - Mode: CW - Comment: 8 dB 16 WPM CQ - Time: 0426Z - DXCC: 1 -[24-09-2024 11:26:16] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:16] INFO S55359AD4|spot 35 callsign=VE7UTS rx_freq=50.056599 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=VE7CC timestamp=1727151976 lifetime_seconds=30 priority=2 comment=8 dB 16 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:16] INFO R11|0|35 -[24-09-2024 11:26:19] INFO DX: N5JJ - Spotter: HB9DCO - Freq: 14029.0 - Band: 20M - Mode: CW - Comment: 22 dB 28 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:19] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:19] INFO S55359AD4|spot 36 callsign=N5JJ rx_freq=14.029000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=HB9DCO timestamp=1727151979 lifetime_seconds=30 priority=5 comment=22 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:19] INFO R12|0|36 -[24-09-2024 11:26:23] INFO DX: WA0KRL - Spotter: W1NT - Freq: 7120.5 - Band: 40M - Mode: CW - Comment: 26 dB 11 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:23] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:23] INFO S55359AD4|spot 37 callsign=WA0KRL rx_freq=7.120500 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727151983 lifetime_seconds=30 priority=5 comment=26 dB 11 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:23] INFO R13|0|37 -[24-09-2024 11:26:23] INFO DX: RD9CX - Spotter: OH4KA - Freq: 18073.0 - Band: 17M - Mode: CW - Comment: 6 dB 21 WPM CQ - Time: 0426Z - DXCC: 15 -[24-09-2024 11:26:23] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:24] INFO S55359AD4|spot 38 callsign=RD9CX rx_freq=18.073000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=OH4KA timestamp=1727151983 lifetime_seconds=30 priority=5 comment=6 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:24] INFO R14|0|38 -[24-09-2024 11:26:25] INFO S0|spot 28 removed -[24-09-2024 11:26:25] INFO S0|spot 29 removed -[24-09-2024 11:26:26] INFO S0|spot 30 removed -[24-09-2024 11:26:26] INFO S39C492C0|spot 33 triggered pan=0x40000000 -[24-09-2024 11:26:27] INFO DX: WA0KRL - Spotter: VE6JY - Freq: 7120.6 - Band: 40M - Mode: CW - Comment: 32 dB 10 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:27] INFO Tue Sep 24 11:26:23 +07 2024 -[24-09-2024 11:26:28] INFO DX: OH6OS - Spotter: HG8A - Freq: 10113.1 - Band: 30M - Mode: CW - Comment: 33 dB 18 WPM CQ - Time: 0426Z - DXCC: 224 -[24-09-2024 11:26:28] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:28] INFO S55359AD4|spot 39 callsign=OH6OS rx_freq=10.113100 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=HG8A timestamp=1727151988 lifetime_seconds=30 priority=5 comment=33 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:28] INFO R16|0|39 -[24-09-2024 11:26:28] INFO DX: OH6OS - Spotter: KP3CW - Freq: 10113.1 - Band: 30M - Mode: CW - Comment: 29 dB 18 WPM CQ - Time: 0426Z - DXCC: 224 -[24-09-2024 11:26:28] INFO Tue Sep 24 11:26:28 +07 2024 -[24-09-2024 11:26:29] INFO DX: W9UTW - Spotter: WS3W - Freq: 7030.2 - Band: 40M - Mode: CW - Comment: 4 dB 15 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:29] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:29] INFO S55359AD4|spot 40 callsign=W9UTW rx_freq=7.030200 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=WS3W timestamp=1727151989 lifetime_seconds=30 priority=5 comment=4 dB 15 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:29] INFO R18|0|40 -[24-09-2024 11:26:29] INFO S39C492C0|spot 36 triggered pan=0x40000000 -[24-09-2024 11:26:31] INFO S0|spot 31 removed -[24-09-2024 11:26:32] INFO client connected[::1]:63095 -[24-09-2024 11:26:33] INFO DX: CS3B - Spotter: W1NT - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 14 dB 23 WPM NCDXF BCN - Time: 0426Z - DXCC: 256 -[24-09-2024 11:26:33] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:33] INFO S55359AD4|spot 41 callsign=CS3B rx_freq=14.100000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727151993 lifetime_seconds=30 priority=5 comment=14 dB 23 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:26:33] INFO R19|0|41 -[24-09-2024 11:26:34] INFO DX: RX6FJ - Spotter: SE5E - Freq: 14016.8 - Band: 20M - Mode: CW - Comment: 18 dB 19 WPM CQ - Time: 0426Z - DXCC: 54 -[24-09-2024 11:26:34] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:34] INFO S55359AD4|spot 42 callsign=RX6FJ rx_freq=14.016800 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=SE5E timestamp=1727151994 lifetime_seconds=30 priority=5 comment=18 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:34] INFO R20|0|42 -[24-09-2024 11:26:37] INFO DX: OK1CF - Spotter: OK1FCJ - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0426Z - DXCC: 503 -[24-09-2024 11:26:37] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:38] INFO S55359AD4|spot 43 callsign=OK1CF rx_freq=1.825800 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=OK1FCJ timestamp=1727151997 lifetime_seconds=30 priority=5 comment=29 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:38] INFO R21|0|43 -[24-09-2024 11:26:38] INFO S0|spot 32 removed -[24-09-2024 11:26:38] INFO S39C492C0|spot 33 triggered pan=0x40000000 -[24-09-2024 11:26:38] INFO XV9Q clicked on spot "KB3NSK" at 14.038000 -[24-09-2024 11:26:39] INFO S0|spot 33 removed -[24-09-2024 11:26:39] INFO (** New Band **) DX: IU5KZF - Spotter: LZ4AE - Freq: 7007.0 - Band: 40M - Mode: CW - Comment: 6 dB 18 WPM CQ - Time: 0426Z - DXCC: 248 -[24-09-2024 11:26:39] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:39] INFO S55359AD4|spot 44 callsign=IU5KZF rx_freq=7.007000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=LZ4AE timestamp=1727151999 lifetime_seconds=30 priority=2 comment=6 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:39] INFO R22|0|44 -[24-09-2024 11:26:39] INFO (** New Band **) DX: CS3B - Spotter: KM3T - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 25 dB 19 WPM NCDXF BCN - Time: 0426Z - DXCC: 256 -[24-09-2024 11:26:39] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:39] INFO S55359AD4|spot 45 callsign=CS3B rx_freq=18.110001 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=KM3T timestamp=1727151999 lifetime_seconds=30 priority=2 comment=25 dB 19 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:26:39] INFO R23|0|45 -[24-09-2024 11:26:41] INFO S39C492C0|spot 42 triggered pan=0x40000000 -[24-09-2024 11:26:41] INFO XV9Q clicked on spot "RX6FJ" at 14.016800 -[24-09-2024 11:26:44] INFO Message reçu du client: XV9Q - -[24-09-2024 11:26:44] INFO Message reçu du client: XV9Q - -[24-09-2024 11:26:44] INFO Message reçu du client: SH/DX 30 - -[24-09-2024 11:26:45] INFO S0|spot 34 removed -[24-09-2024 11:26:46] INFO S39C492C0|spot 36 triggered pan=0x40000000 -[24-09-2024 11:26:46] INFO XV9Q clicked on spot "N5JJ" at 14.029000 -[24-09-2024 11:26:46] INFO S0|spot 35 removed -[24-09-2024 11:26:48] INFO S0|spot 36 removed -[24-09-2024 11:26:49] INFO (** New Band **) DX: KB1CL - Spotter: KM3T - Freq: 3545.3 - Band: 80M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:49] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:49] INFO S55359AD4|spot 46 callsign=KB1CL rx_freq=3.545300 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=KM3T timestamp=1727152009 lifetime_seconds=30 priority=2 comment=9 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:49] INFO R24|0|46 -[24-09-2024 11:26:50] INFO (** New Band **) DX: HA8RM - Spotter: K7CO - Freq: 7007.9 - Band: 40M - Mode: CW - Comment: 10 dB 26 WPM CQ - Time: 0426Z - DXCC: 239 -[24-09-2024 11:26:50] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:50] INFO S55359AD4|spot 47 callsign=HA8RM rx_freq=7.007900 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=K7CO timestamp=1727152010 lifetime_seconds=30 priority=2 comment=10 dB 26 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:50] INFO R25|0|47 -[24-09-2024 11:26:50] INFO DX: WB2AWQ - Spotter: K7CO - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 26 dB 23 WPM CQ - Time: 0426Z - DXCC: 291 -[24-09-2024 11:26:50] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:50] INFO S55359AD4|spot 48 callsign=WB2AWQ rx_freq=7.036000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=K7CO timestamp=1727152010 lifetime_seconds=30 priority=5 comment=26 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:50] INFO R26|0|48 -[24-09-2024 11:26:52] INFO S0|spot 37 removed -[24-09-2024 11:26:53] INFO DX: RZ6L - Spotter: MM3NDH - Freq: 7016.6 - Band: 40M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0426Z - DXCC: 54 -[24-09-2024 11:26:53] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:53] INFO S55359AD4|spot 49 callsign=RZ6L rx_freq=7.016600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=MM3NDH timestamp=1727152013 lifetime_seconds=30 priority=5 comment=6 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:53] INFO R27|0|49 -[24-09-2024 11:26:53] INFO S0|spot 38 removed -[24-09-2024 11:26:55] INFO (** New Band **) DX: OA4B - Spotter: DD5XX - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 21 dB 21 WPM NCDXF BCN - Time: 0426Z - DXCC: 136 -[24-09-2024 11:26:55] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:55] INFO S55359AD4|spot 50 callsign=OA4B rx_freq=18.110001 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DD5XX timestamp=1727152015 lifetime_seconds=30 priority=2 comment=21 dB 21 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:26:55] INFO R28|0|50 -[24-09-2024 11:26:55] INFO DX: RZ6L - Spotter: MM0ZBH - Freq: 7016.6 - Band: 40M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0426Z - DXCC: 54 -[24-09-2024 11:26:55] INFO Tue Sep 24 11:26:53 +07 2024 -[24-09-2024 11:26:57] INFO S0|spot 39 removed -[24-09-2024 11:26:58] INFO S0|spot 40 removed -[24-09-2024 11:26:59] INFO DX: DK8IT - Spotter: AC0C - Freq: 14022.0 - Band: 20M - Mode: CW - Comment: 15 dB 28 WPM CQ - Time: 0427Z - DXCC: 230 -[24-09-2024 11:26:59] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:26:59] INFO S55359AD4|spot 51 callsign=DK8IT rx_freq=14.022000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=AC0C timestamp=1727152019 lifetime_seconds=30 priority=5 comment=15 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:26:59] INFO R30|0|51 -[24-09-2024 11:26:59] INFO DX: DK8IT - Spotter: KM3T - Freq: 14022.0 - Band: 20M - Mode: CW - Comment: 17 dB 28 WPM CQ - Time: 0427Z - DXCC: 230 -[24-09-2024 11:26:59] INFO Tue Sep 24 11:26:59 +07 2024 -[24-09-2024 11:27:01] INFO DX: VA2RB - Spotter: KA7OEI - Freq: 14013.0 - Band: 20M - Mode: CW - Comment: 22 dB 21 WPM CQ - Time: 0427Z - DXCC: 1 -[24-09-2024 11:27:01] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:01] INFO S55359AD4|spot 52 callsign=VA2RB rx_freq=14.013000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=KA7OEI timestamp=1727152021 lifetime_seconds=30 priority=5 comment=22 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:01] INFO R32|0|52 -[24-09-2024 11:27:02] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 11 dB 22 WPM NCDXF BCN - Time: 0427Z - DXCC: 997 -[24-09-2024 11:27:02] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:02] INFO S55359AD4|spot 53 callsign=4X6TU rx_freq=14.100000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727152022 lifetime_seconds=30 priority=5 comment=11 dB 22 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:27:02] INFO R33|0|53 -[24-09-2024 11:27:05] INFO S0|spot 41 removed -[24-09-2024 11:27:05] INFO S0|spot 42 removed -[24-09-2024 11:27:05] INFO (** New DXCC **) DX: 4U1UN - Spotter: DD5XX - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 10 dB 22 WPM NCDXF BCN - Time: 0427Z - Command: 0, FlexSpot: 0 -[24-09-2024 11:27:05] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:05] INFO S55359AD4|spot 54 callsign=4U1UN rx_freq=14.100000 tx_freq=0.000000 mode=CW color=#3bf908 background_color=#000000 source=FlexDXCluster spotter_callsign=DD5XX timestamp=1727152025 lifetime_seconds=30 priority=1 comment=10 dB 22 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:27:05] INFO R34|0|54 -[24-09-2024 11:27:07] INFO S0|spot 43 removed -[24-09-2024 11:27:07] INFO (** New Band **) DX: IK1RDN - Spotter: DL1HWS - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 19 dB 21 WPM CQ - Time: 0427Z - DXCC: 248 -[24-09-2024 11:27:07] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:07] INFO S55359AD4|spot 55 callsign=IK1RDN rx_freq=7.030000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DL1HWS timestamp=1727152027 lifetime_seconds=30 priority=2 comment=19 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:07] INFO R35|0|55 -[24-09-2024 11:27:09] INFO (** New Band **) DX: IK1RDN - Spotter: 2E0INH - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 1 dB 21 WPM CQ - Time: 0427Z - DXCC: 248 -[24-09-2024 11:27:09] INFO Tue Sep 24 11:27:07 +07 2024 -[24-09-2024 11:27:09] INFO S0|spot 44 removed -[24-09-2024 11:27:09] INFO S0|spot 45 removed -[24-09-2024 11:27:09] INFO (** New DXCC **) DX: TS6L - Spotter: DF2CK - Freq: 7016.6 - Band: 40M - Mode: CW - Comment: 16 dB 24 WPM CQ - Time: 0427Z - Command: 0, FlexSpot: 0 -[24-09-2024 11:27:09] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:10] INFO S55359AD4|spot 56 callsign=TS6L rx_freq=7.016600 tx_freq=0.000000 mode=CW color=#3bf908 background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727152029 lifetime_seconds=30 priority=1 comment=16 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:10] INFO R37|0|56 -[24-09-2024 11:27:12] INFO DX: 4X6ZM - Spotter: HA6PX - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 17 dB 21 WPM CQ - Time: 0427Z - DXCC: 336 -[24-09-2024 11:27:12] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:13] INFO DX: 4X6ZM - Spotter: DF2CK - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 28 dB 21 WPM CQ - Time: 0427Z - DXCC: 336 -[24-09-2024 11:27:13] INFO Tue Sep 24 11:27:12 +07 2024 -[24-09-2024 11:27:13] INFO S55359AD4|spot 57 callsign=4X6ZM rx_freq=18.077000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=HA6PX timestamp=1727152032 lifetime_seconds=30 priority=5 comment=17 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:13] INFO R38|0|57 -[24-09-2024 11:27:13] INFO DX: W0EAS - Spotter: KO7SS - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 10 dB 29 WPM CQ - Time: 0427Z - DXCC: 291 -[24-09-2024 11:27:13] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:13] INFO S55359AD4|spot 58 callsign=W0EAS rx_freq=14.020000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=KO7SS timestamp=1727152033 lifetime_seconds=30 priority=5 comment=10 dB 29 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:13] INFO R40|0|58 -[24-09-2024 11:27:18] INFO S0|spot 46 removed -[24-09-2024 11:27:19] INFO S0|spot 47 removed -[24-09-2024 11:27:19] INFO (** New Band **) DX: HA2EOU - Spotter: EA1URA - Freq: 7011.0 - Band: 40M - Mode: CW - Comment: 31 dB 17 WPM CQ - Time: 0427Z - DXCC: 239 -[24-09-2024 11:27:19] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:19] INFO S55359AD4|spot 59 callsign=HA2EOU rx_freq=7.011000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=EA1URA timestamp=1727152039 lifetime_seconds=30 priority=2 comment=31 dB 17 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:19] INFO R41|0|59 -[24-09-2024 11:27:20] INFO S0|spot 48 removed -[24-09-2024 11:27:20] INFO DX: RW0AB - Spotter: UA0S - Freq: 14022.7 - Band: 20M - Mode: CW - Comment: 25 dB 25 WPM CQ - Time: 0427Z - DXCC: 15 -[24-09-2024 11:27:20] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:20] INFO S55359AD4|spot 60 callsign=RW0AB rx_freq=14.022700 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=UA0S timestamp=1727152040 lifetime_seconds=30 priority=5 comment=25 dB 25 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:27:20] INFO R42|0|60 -[24-09-2024 11:27:21] INFO DX: RW0AB - Spotter: R9IR - Freq: 14022.7 - Band: 20M - Mode: CW - Comment: 39 dB 25 WPM CQ - Time: 0427Z - DXCC: 15 -[24-09-2024 11:27:21] INFO Tue Sep 24 11:27:20 +07 2024 -[24-09-2024 11:27:22] INFO S0|spot 49 removed -[24-09-2024 11:27:24] INFO S0|spot 50 removed -[24-09-2024 11:27:28] INFO S0|spot 51 removed -[24-09-2024 11:27:31] INFO S0|spot 52 removed -[24-09-2024 11:27:32] INFO S0|spot 53 removed -[24-09-2024 11:27:35] INFO S0|spot 54 removed -[24-09-2024 11:27:37] INFO S0|spot 55 removed -[24-09-2024 11:27:37] INFO (** New Mode **) DX: VK2SOL - Spotter: YO7MPD - Freq: 14222.0 - Band: 20M - Mode: - Comment: - Time: 0427Z - DXCC: 150 -[24-09-2024 11:27:37] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:27:37] INFO S55359AD4|spot 61 callsign=VK2SOL rx_freq=14.222000 tx_freq=0.000000 mode= color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=YO7MPD timestamp=1727152057 lifetime_seconds=30 priority=5 comment= [] trigger_action=TUNE -[24-09-2024 11:27:37] INFO R44|0|61 -[24-09-2024 11:39:39] INFO config loaded. -[24-09-2024 11:39:39] INFO Callsign: XV9Q -[24-09-2024 11:39:39] INFO deleting existing database -[24-09-2024 11:39:39] INFO Opening SQLite database -[24-09-2024 11:39:39] INFO telnet server listening on 0.0.0.0:7301 -[24-09-2024 11:39:39] INFO connected to 10.10.10.120:4992 -[24-09-2024 11:39:39] INFO V1.4.0.0 -[24-09-2024 11:39:39] INFO H7ACF3F1F -[24-09-2024 11:39:39] INFO M10000001|Client connected from IP 10.10.10.106 -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:39:39] INFO S7ACF3F1F|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:39:39] INFO S7ACF3F1F|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:39:39] INFO S7ACF3F1F|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:39:39] INFO S7ACF3F1F|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:39:39] INFO R1|0| -[24-09-2024 11:39:39] INFO R2|0| -[24-09-2024 11:39:39] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:39:39] INFO connected to dxc.k0xm.net:7300 -[24-09-2024 11:39:40] INFO Found login prompt...sending callsign -[24-09-2024 11:39:42] INFO Skimmer is on as defined in the config file -[24-09-2024 11:39:42] INFO FT8 is off as defined in the config file -[24-09-2024 11:39:43] INFO DX: RK3ER - Spotter: LZ3CB - Freq: 7023.4 - Band: 40M - Mode: CW - Comment: 14 dB 28 WPM CQ - Time: 0439Z - DXCC: 54 -[24-09-2024 11:39:43] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:43] INFO DX: RW6A - Spotter: W3OA - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 10 dB 22 WPM CQ - Time: 0439Z - DXCC: 54 -[24-09-2024 11:39:43] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:43] INFO S7ACF3F1F|spot 62 callsign=RK3ER rx_freq=7.023400 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LZ3CB timestamp=1727152783 lifetime_seconds=30 priority=5 comment=14 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:43] INFO R3|0|62 -[24-09-2024 11:39:43] INFO S7ACF3F1F|spot 63 callsign=RW6A rx_freq=14.025000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W3OA timestamp=1727152783 lifetime_seconds=30 priority=5 comment=10 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:43] INFO R4|0|63 -[24-09-2024 11:39:45] INFO DX: RZ6L - Spotter: OH4KA - Freq: 7016.6 - Band: 40M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0439Z - DXCC: 54 -[24-09-2024 11:39:45] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:45] INFO S7ACF3F1F|spot 64 callsign=RZ6L rx_freq=7.016600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=OH4KA timestamp=1727152785 lifetime_seconds=30 priority=5 comment=22 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:45] INFO R5|0|64 -[24-09-2024 11:39:49] INFO (** New Band **) DX: IU5KZF - Spotter: DK9IP - Freq: 7007.0 - Band: 40M - Mode: CW - Comment: 11 dB 18 WPM CQ - Time: 0439Z - DXCC: 248 -[24-09-2024 11:39:49] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:49] INFO S7ACF3F1F|spot 65 callsign=IU5KZF rx_freq=7.007000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DK9IP timestamp=1727152789 lifetime_seconds=30 priority=2 comment=11 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:49] INFO R6|0|65 -[24-09-2024 11:39:50] INFO DX: ZL6B - Spotter: DJ9IE - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 15 dB 20 WPM NCDXF BCN - Time: 0439Z - DXCC: 170 -[24-09-2024 11:39:50] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:50] INFO S7ACF3F1F|spot 66 callsign=ZL6B rx_freq=14.100000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DJ9IE timestamp=1727152790 lifetime_seconds=30 priority=5 comment=15 dB 20 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:39:50] INFO R7|0|66 -[24-09-2024 11:39:50] INFO DX: KH6RS - Spotter: NG7M - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 17 dB 20 WPM NCDXF BCN - Time: 0439Z - DXCC: 110 -[24-09-2024 11:39:50] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:50] INFO S7ACF3F1F|spot 67 callsign=KH6RS rx_freq=18.110001 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=NG7M timestamp=1727152790 lifetime_seconds=30 priority=5 comment=17 dB 20 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:39:50] INFO R8|0|67 -[24-09-2024 11:39:51] INFO S2EA2B35B|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:39:51] INFO S2EA2B35B|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:39:51] INFO S2EA2B35B|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:39:51] INFO S2EA2B35B|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:39:51] INFO S2EA2B35B|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:39:51] INFO S2EA2B35B|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:39:51] INFO S2EA2B35B|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:39:51] INFO S2EA2B35B|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:39:51] INFO S2EA2B35B|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:39:51] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:39:54] INFO DX: R8FD - Spotter: LZ4UX - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 7 dB 23 WPM CQ - Time: 0439Z - DXCC: 54 -[24-09-2024 11:39:54] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:54] INFO S7ACF3F1F|spot 68 callsign=R8FD rx_freq=14.007000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LZ4UX timestamp=1727152794 lifetime_seconds=30 priority=5 comment=7 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:54] INFO R9|0|68 -[24-09-2024 11:39:56] INFO DX: IK1RDN - Spotter: ZF1A - Freq: 10116.1 - Band: 30M - Mode: CW - Comment: 8 dB 21 WPM CQ - Time: 0439Z - DXCC: 248 -[24-09-2024 11:39:56] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:56] INFO S7ACF3F1F|spot 69 callsign=IK1RDN rx_freq=10.116100 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=ZF1A timestamp=1727152796 lifetime_seconds=30 priority=5 comment=8 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:56] INFO R10|0|69 -[24-09-2024 11:39:57] INFO DX: OK2BEI - Spotter: ZF1A - Freq: 14012.1 - Band: 20M - Mode: CW - Comment: 17 dB 19 WPM CQ - Time: 0439Z - DXCC: 503 -[24-09-2024 11:39:57] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:57] INFO S7ACF3F1F|spot 70 callsign=OK2BEI rx_freq=14.012100 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=ZF1A timestamp=1727152797 lifetime_seconds=30 priority=5 comment=17 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:57] INFO R11|0|70 -[24-09-2024 11:39:58] INFO DX: LZ3SM - Spotter: MM0ZBH - Freq: 14048.0 - Band: 20M - Mode: CW - Comment: 9 dB 27 WPM CQ - Time: 0439Z - DXCC: 212 -[24-09-2024 11:39:58] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:39:58] INFO S7ACF3F1F|spot 71 callsign=LZ3SM rx_freq=14.048000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=MM0ZBH timestamp=1727152798 lifetime_seconds=30 priority=5 comment=9 dB 27 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:39:58] INFO R12|0|71 -[24-09-2024 11:40:00] INFO DX: JF8KBH - Spotter: BH4XDZ - Freq: 21063.0 - Band: 15M - Mode: CW - Comment: 6 dB 27 WPM CQ - Time: 0440Z - DXCC: 339 -[24-09-2024 11:40:00] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:00] INFO S7ACF3F1F|spot 72 callsign=JF8KBH rx_freq=21.063000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=BH4XDZ timestamp=1727152800 lifetime_seconds=30 priority=5 comment=6 dB 27 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:00] INFO R13|0|72 -[24-09-2024 11:40:05] INFO DX: DK1WI - Spotter: RU9CZD - Freq: 10119.9 - Band: 30M - Mode: CW - Comment: 8 dB 25 WPM CQ - Time: 0440Z - DXCC: 230 -[24-09-2024 11:40:05] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:05] INFO S7ACF3F1F|spot 73 callsign=DK1WI rx_freq=10.119900 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RU9CZD timestamp=1727152805 lifetime_seconds=30 priority=5 comment=8 dB 25 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:05] INFO R14|0|73 -[24-09-2024 11:40:06] INFO DX: NB3W - Spotter: KM3T - Freq: 7017.9 - Band: 40M - Mode: CW - Comment: 20 dB 19 WPM CQ - Time: 0440Z - DXCC: 291 -[24-09-2024 11:40:06] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:06] INFO S7ACF3F1F|spot 74 callsign=NB3W rx_freq=7.017900 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=KM3T timestamp=1727152806 lifetime_seconds=30 priority=5 comment=20 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:06] INFO R15|0|74 -[24-09-2024 11:40:06] INFO DX: HB9IJC - Spotter: WS2C - Freq: 14002.6 - Band: 20M - Mode: CW - Comment: 4 dB 23 WPM CQ - Time: 0440Z - DXCC: 287 -[24-09-2024 11:40:06] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:06] INFO S7ACF3F1F|spot 75 callsign=HB9IJC rx_freq=14.002600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=WS2C timestamp=1727152806 lifetime_seconds=30 priority=5 comment=4 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:06] INFO R16|0|75 -[24-09-2024 11:40:08] INFO S1383A195|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:40:08] INFO S1383A195|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:40:08] INFO S1383A195|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:40:08] INFO S1383A195|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:40:08] INFO S1383A195|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:40:08] INFO S1383A195|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:40:08] INFO S1383A195|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:40:08] INFO S1383A195|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:40:08] INFO S1383A195|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:40:08] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:40:10] INFO DX: RU6UR - Spotter: LZ4AE - Freq: 14022.0 - Band: 20M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0440Z - DXCC: 54 -[24-09-2024 11:40:10] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:10] INFO S7ACF3F1F|spot 76 callsign=RU6UR rx_freq=14.022000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LZ4AE timestamp=1727152810 lifetime_seconds=30 priority=5 comment=6 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:10] INFO R17|0|76 -[24-09-2024 11:40:11] INFO DX: K6AR - Spotter: EA5RQ - Freq: 14024.0 - Band: 20M - Mode: CW - Comment: 24 dB 28 WPM CQ - Time: 0440Z - DXCC: 291 -[24-09-2024 11:40:11] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:11] INFO S7ACF3F1F|spot 77 callsign=K6AR rx_freq=14.024000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=EA5RQ timestamp=1727152811 lifetime_seconds=30 priority=5 comment=24 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:11] INFO R18|0|77 -[24-09-2024 11:40:12] INFO S7815A5B9|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:40:12] INFO S7815A5B9|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:40:12] INFO S7815A5B9|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:40:12] INFO S7815A5B9|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:40:12] INFO S7815A5B9|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:40:12] INFO S7815A5B9|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:40:12] INFO S7815A5B9|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:40:12] INFO S7815A5B9|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:40:12] INFO S7815A5B9|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:40:12] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:40:13] INFO S0|spot 62 removed -[24-09-2024 11:40:13] INFO deleted spot 62 from database -[24-09-2024 11:40:13] INFO S0|spot 63 removed -[24-09-2024 11:40:13] INFO deleted spot 63 from database -[24-09-2024 11:40:14] INFO S0|spot 64 removed -[24-09-2024 11:40:14] INFO deleted spot 64 from database -[24-09-2024 11:40:14] INFO DX: JA1IAZ - Spotter: JI1HFJ - Freq: 7007.7 - Band: 40M - Mode: CW - Comment: 13 dB 22 WPM CQ - Time: 0440Z - DXCC: 339 -[24-09-2024 11:40:14] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:14] INFO S7ACF3F1F|spot 78 callsign=JA1IAZ rx_freq=7.007700 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=JI1HFJ timestamp=1727152814 lifetime_seconds=30 priority=5 comment=13 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:14] INFO R19|0|78 -[24-09-2024 11:40:15] INFO S123748B4|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:40:15] INFO S123748B4|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:40:15] INFO S123748B4|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:40:15] INFO S123748B4|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:40:15] INFO S123748B4|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:40:15] INFO S123748B4|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:40:15] INFO S123748B4|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:40:15] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:40:15] INFO S123748B4|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:40:15] INFO S123748B4|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:40:18] INFO S0|spot 65 removed -[24-09-2024 11:40:18] INFO deleted spot 65 from database -[24-09-2024 11:40:19] INFO S0|spot 66 removed -[24-09-2024 11:40:19] INFO deleted spot 66 from database -[24-09-2024 11:40:20] INFO S0|spot 67 removed -[24-09-2024 11:40:20] INFO deleted spot 67 from database -[24-09-2024 11:40:24] INFO S0|spot 68 removed -[24-09-2024 11:40:24] INFO deleted spot 68 from database -[24-09-2024 11:40:26] INFO S0|spot 69 removed -[24-09-2024 11:40:26] INFO deleted spot 69 from database -[24-09-2024 11:40:26] INFO S0|spot 70 removed -[24-09-2024 11:40:26] INFO deleted spot 70 from database -[24-09-2024 11:40:27] INFO S0|spot 71 removed -[24-09-2024 11:40:27] INFO deleted spot 71 from database -[24-09-2024 11:40:28] INFO DX: WB4FDT - Spotter: W6YX - Freq: 7065.8 - Band: 40M - Mode: CW - Comment: 21 dB 19 WPM CQ - Time: 0440Z - DXCC: 291 -[24-09-2024 11:40:28] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:28] INFO S7ACF3F1F|spot 79 callsign=WB4FDT rx_freq=7.065800 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W6YX timestamp=1727152828 lifetime_seconds=30 priority=5 comment=21 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:28] INFO R20|0|79 -[24-09-2024 11:40:29] INFO DX: R8UL - Spotter: DF2CK - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 8 dB 22 WPM CQ - Time: 0440Z - DXCC: 15 -[24-09-2024 11:40:29] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:29] INFO S7ACF3F1F|spot 80 callsign=R8UL rx_freq=14.007000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727152829 lifetime_seconds=30 priority=5 comment=8 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:29] INFO R21|0|80 -[24-09-2024 11:40:29] INFO S0|spot 72 removed -[24-09-2024 11:40:29] INFO deleted spot 72 from database -[24-09-2024 11:40:30] INFO SFA1F1A4|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:40:30] INFO SFA1F1A4|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:40:30] INFO SFA1F1A4|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:40:30] INFO SFA1F1A4|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:40:30] INFO SFA1F1A4|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:40:30] INFO SFA1F1A4|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:40:30] INFO SFA1F1A4|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:40:31] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:40:31] INFO SFA1F1A4|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:40:31] INFO SFA1F1A4|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:40:35] INFO S7C1B1E5F|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:40:35] INFO S7C1B1E5F|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:40:35] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:40:35] INFO S7C1B1E5F|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:40:35] INFO S7C1B1E5F|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:40:35] INFO DX: RC4A - Spotter: LZ4UX - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 7 dB 25 WPM CQ - Time: 0440Z - DXCC: 54 -[24-09-2024 11:40:35] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:35] INFO S7ACF3F1F|spot 81 callsign=RC4A rx_freq=7.025000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LZ4UX timestamp=1727152835 lifetime_seconds=30 priority=5 comment=7 dB 25 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:35] INFO R22|0|81 -[24-09-2024 11:40:35] INFO S0|spot 73 removed -[24-09-2024 11:40:35] INFO deleted spot 73 from database -[24-09-2024 11:40:35] INFO S0|spot 74 removed -[24-09-2024 11:40:35] INFO deleted spot 74 from database -[24-09-2024 11:40:36] INFO DX: VK4CCW - Spotter: VK2GEL - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 25 dB 20 WPM CQ - Time: 0440Z - DXCC: 150 -[24-09-2024 11:40:36] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:36] INFO S7ACF3F1F|spot 82 callsign=VK4CCW rx_freq=14.025000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=VK2GEL timestamp=1727152836 lifetime_seconds=30 priority=5 comment=25 dB 20 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:36] INFO R23|0|82 -[24-09-2024 11:40:36] INFO S0|spot 75 removed -[24-09-2024 11:40:36] INFO deleted spot 75 from database -[24-09-2024 11:40:37] INFO DX: VK4CCW - Spotter: VK2RH - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 20 dB 20 WPM CQ - Time: 0440Z - DXCC: 150 -[24-09-2024 11:40:37] INFO Tue Sep 24 11:40:36 +07 2024 -[24-09-2024 11:40:39] INFO S0|spot 76 removed -[24-09-2024 11:40:39] INFO deleted spot 76 from database -[24-09-2024 11:40:40] INFO S0|spot 77 removed -[24-09-2024 11:40:40] INFO deleted spot 77 from database -[24-09-2024 11:40:41] INFO DX: EA5C - Spotter: ON7KEC - Freq: 1822.5 - Band: 17M - Mode: CW - Comment: 12 dB 24 WPM CQ - Time: 0440Z - DXCC: 281 -[24-09-2024 11:40:41] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:41] INFO S7ACF3F1F|spot 83 callsign=EA5C rx_freq=1.822500 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=ON7KEC timestamp=1727152841 lifetime_seconds=30 priority=5 comment=12 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:41] INFO R25|0|83 -[24-09-2024 11:40:42] INFO DX: OH6OS - Spotter: TI7W - Freq: 10113.1 - Band: 30M - Mode: CW - Comment: 27 dB 17 WPM CQ - Time: 0440Z - DXCC: 224 -[24-09-2024 11:40:42] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:42] INFO S7ACF3F1F|spot 84 callsign=OH6OS rx_freq=10.113100 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=TI7W timestamp=1727152842 lifetime_seconds=30 priority=5 comment=27 dB 17 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:40:42] INFO R26|0|84 -[24-09-2024 11:40:44] INFO S0|spot 78 removed -[24-09-2024 11:40:44] INFO deleted spot 78 from database -[24-09-2024 11:40:46] INFO DX: EA5C - Spotter: OE9GHV - Freq: 1822.5 - Band: 17M - Mode: CW - Comment: 25 dB 24 WPM CQ - Time: 0440Z - DXCC: 281 -[24-09-2024 11:40:46] INFO Tue Sep 24 11:40:41 +07 2024 -[24-09-2024 11:40:48] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: IK6SIO - Freq: 14016.0 - Band: 20M - Mode: - Comment: QSX UP 1-2 dxcc= HH Haiti - Time: 0440Z - Command: 0, FlexSpot: 0 -[24-09-2024 11:40:48] INFO Thu Jan 1 07:00:00 +07 1970 -[24-09-2024 11:40:48] INFO S7ACF3F1F|spot 85 callsign=4V1SAVANNAH rx_freq=14.016000 tx_freq=0.000000 mode= color=#3bf908 background_color=#000000 source=FlexDXCluster spotter_callsign=IK6SIO timestamp=1727152848 lifetime_seconds=30 priority=1 comment=QSX UP 1-2 dxcc= HH Haiti [] trigger_action=TUNE -[24-09-2024 11:40:48] INFO R28|0|85 -[24-09-2024 11:54:27] INFO config loaded. -[24-09-2024 11:54:27] INFO Callsign: XV9Q -[24-09-2024 11:54:27] INFO deleting existing database -[24-09-2024 11:54:27] INFO Opening SQLite database -[24-09-2024 11:54:27] INFO telnet server listening on 0.0.0.0:7301 -[24-09-2024 11:54:27] INFO connected to 10.10.10.120:4992 -[24-09-2024 11:54:27] INFO V1.4.0.0 -[24-09-2024 11:54:27] INFO H7B56C863 -[24-09-2024 11:54:27] INFO M10000001|Client connected from IP 10.10.10.106 -[24-09-2024 11:54:27] INFO S7B56C863|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:54:27] INFO S7B56C863|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:54:27] INFO S7B56C863|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:54:27] INFO S7B56C863|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:54:27] INFO S7B56C863|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:54:27] INFO S7B56C863|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:54:27] INFO S7B56C863|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:54:27] INFO S7B56C863|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:54:27] INFO S7B56C863|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:54:27] INFO R1|0| -[24-09-2024 11:54:27] INFO R2|0| -[24-09-2024 11:54:28] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:54:28] INFO connected to dxc.k0xm.net:7300 -[24-09-2024 11:54:28] INFO Found login prompt...sending callsign -[24-09-2024 11:54:30] INFO Skimmer is on as defined in the config file -[24-09-2024 11:54:30] INFO FT8 is off as defined in the config file -[24-09-2024 11:54:36] INFO (** New Band **) DX: DJ2PH - Spotter: HA1VHF - Freq: 7037.6 - Band: 40M - Mode: CW - Comment: 11 dB 18 WPM CQ - Time: 0454Z - DXCC: 230 -[24-09-2024 11:54:36] INFO S7B56C863|spot 86 callsign=DJ2PH rx_freq=7.037600 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=HA1VHF timestamp=1727153676 lifetime_seconds=30 priority=2 comment=11 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:36] INFO R3|0|86 -[24-09-2024 11:54:36] INFO (** New Band **) DX: DJ2PH - Spotter: MM3NDH - Freq: 7037.6 - Band: 40M - Mode: CW - Comment: 19 dB 18 WPM CQ - Time: 0454Z - DXCC: 230 -[24-09-2024 11:54:37] INFO (** New Mode **) DX: F5EAN - Spotter: LU2PWY - Freq: 14170.0 - Band: 20M - Mode: - Comment: rx 59+5 - Time: 0454Z - DXCC: 227 -[24-09-2024 11:54:37] INFO S7B56C863|spot 87 callsign=F5EAN rx_freq=14.170000 tx_freq=0.000000 mode= color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LU2PWY timestamp=1727153677 lifetime_seconds=30 priority=5 comment=rx 59+5 [] trigger_action=TUNE -[24-09-2024 11:54:37] INFO R5|0|87 -[24-09-2024 11:54:37] INFO DX: WA0JDE - Spotter: 3V8SS - Freq: 14028.0 - Band: 20M - Mode: CW - Comment: 13 dB 22 WPM CQ - Time: 0454Z - DXCC: 291 -[24-09-2024 11:54:37] INFO S7B56C863|spot 88 callsign=WA0JDE rx_freq=14.028000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=3V8SS timestamp=1727153677 lifetime_seconds=30 priority=5 comment=13 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:37] INFO R6|0|88 -[24-09-2024 11:54:38] INFO DX: KN6VQ - Spotter: JI1HFJ - Freq: 21039.0 - Band: 15M - Mode: CW - Comment: 3 dB 17 WPM CQ - Time: 0454Z - DXCC: 291 -[24-09-2024 11:54:39] INFO S7B56C863|spot 89 callsign=KN6VQ rx_freq=21.039000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=JI1HFJ timestamp=1727153678 lifetime_seconds=30 priority=5 comment=3 dB 17 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:39] INFO R7|0|89 -[24-09-2024 11:54:44] INFO DX: F4EEI - Spotter: WB6BEE - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 13 dB 20 WPM CQ - Time: 0454Z - DXCC: 227 -[24-09-2024 11:54:44] INFO S7B56C863|spot 90 callsign=F4EEI rx_freq=14.007000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=WB6BEE timestamp=1727153684 lifetime_seconds=30 priority=5 comment=13 dB 20 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:44] INFO R8|0|90 -[24-09-2024 11:54:44] INFO (** New Band **) DX: OH2CK - Spotter: DK9IP - Freq: 7035.9 - Band: 40M - Mode: CW - Comment: 13 dB 13 WPM CQ - Time: 0454Z - DXCC: 224 -[24-09-2024 11:54:44] INFO S7B56C863|spot 91 callsign=OH2CK rx_freq=7.035900 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DK9IP timestamp=1727153684 lifetime_seconds=30 priority=2 comment=13 dB 13 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:44] INFO R9|0|91 -[24-09-2024 11:54:45] INFO client connected[::1]:64694 -[24-09-2024 11:54:46] INFO (** New Band **) DX: OH2CK - Spotter: MM3NDH - Freq: 7035.9 - Band: 40M - Mode: CW - Comment: 16 dB 13 WPM CQ - Time: 0454Z - DXCC: 224 -[24-09-2024 11:54:46] INFO DX: RT7KM - Spotter: RK3TD - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 22 dB 23 WPM CQ - Time: 0454Z - DXCC: 54 -[24-09-2024 11:54:46] INFO S7B56C863|spot 92 callsign=RT7KM rx_freq=14.027000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RK3TD timestamp=1727153686 lifetime_seconds=30 priority=5 comment=22 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:46] INFO R11|0|92 -[24-09-2024 11:54:47] INFO (** New Band **) DX: DF2JP - Spotter: SE5E - Freq: 7000.4 - Band: 40M - Mode: CW - Comment: 8 dB 28 WPM CQ - Time: 0454Z - DXCC: 230 -[24-09-2024 11:54:47] INFO S7B56C863|spot 93 callsign=DF2JP rx_freq=7.000400 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=SE5E timestamp=1727153687 lifetime_seconds=30 priority=2 comment=8 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:47] INFO R12|0|93 -[24-09-2024 11:54:47] INFO (** New Band **) DX: DF2JP - Spotter: EA2RCF - Freq: 7000.4 - Band: 40M - Mode: CW - Comment: 0 dB 29 WPM CQ - Time: 0454Z - DXCC: 230 -[24-09-2024 11:54:48] INFO (** New Band **) DX: IU5KZF - Spotter: OK1FCJ - Freq: 7007.0 - Band: 40M - Mode: CW - Comment: 22 dB 20 WPM CQ - Time: 0454Z - DXCC: 248 -[24-09-2024 11:54:48] INFO S7B56C863|spot 94 callsign=IU5KZF rx_freq=7.007000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=OK1FCJ timestamp=1727153688 lifetime_seconds=30 priority=2 comment=22 dB 20 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:48] INFO R14|0|94 -[24-09-2024 11:54:49] INFO DX: ZL6B - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 6 dB 22 WPM NCDXF BCN - Time: 0454Z - DXCC: 170 -[24-09-2024 11:54:49] INFO S7B56C863|spot 95 callsign=ZL6B rx_freq=14.100000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727153689 lifetime_seconds=30 priority=5 comment=6 dB 22 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:54:49] INFO R15|0|95 -[24-09-2024 11:54:50] INFO DX: VK3RRU - Spotter: ZL3X - Freq: 28263.0 - Band: 10M - Mode: CW - Comment: 3 dB 15 WPM CQ - Time: 0454Z - DXCC: 150 -[24-09-2024 11:54:50] INFO S7B56C863|spot 96 callsign=VK3RRU rx_freq=28.263000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=ZL3X timestamp=1727153690 lifetime_seconds=30 priority=5 comment=3 dB 15 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:50] INFO R16|0|96 -[24-09-2024 11:54:51] INFO S648A6A75|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:54:51] INFO S648A6A75|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:54:51] INFO S648A6A75|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:54:51] INFO S648A6A75|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:54:51] INFO S648A6A75|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:54:51] INFO S648A6A75|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:54:51] INFO S648A6A75|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:54:51] INFO S648A6A75|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:54:51] INFO S648A6A75|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:54:51] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:54:51] INFO DX: KH6RS - Spotter: VE7CC - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 10 dB 21 WPM NCDXF BCN - Time: 0454Z - DXCC: 110 -[24-09-2024 11:54:51] INFO S7B56C863|spot 97 callsign=KH6RS rx_freq=18.110001 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=VE7CC timestamp=1727153691 lifetime_seconds=30 priority=5 comment=10 dB 21 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:54:51] INFO R17|0|97 -[24-09-2024 11:54:54] INFO DX: UA3T - Spotter: DD5XX - Freq: 18079.0 - Band: 17M - Mode: CW - Comment: 29 dB 21 WPM CQ - Time: 0454Z - DXCC: 54 -[24-09-2024 11:54:54] INFO S7B56C863|spot 98 callsign=UA3T rx_freq=18.079000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DD5XX timestamp=1727153694 lifetime_seconds=30 priority=5 comment=29 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:54] INFO R18|0|98 -[24-09-2024 11:54:54] INFO S39C492C0|spot 90 triggered pan=0x40000000 -[24-09-2024 11:54:54] INFO XV9Q clicked on spot "F4EEI" at 14.007000 -[24-09-2024 11:54:54] INFO DX: UA3T - Spotter: HA8TKS - Freq: 18079.0 - Band: 17M - Mode: CW - Comment: 18 dB 21 WPM CQ - Time: 0454Z - DXCC: 54 -[24-09-2024 11:54:55] INFO (** New Mode **) DX: FK4QX - Spotter: RC7KY - Freq: 21270.0 - Band: 15M - Mode: - Comment: CQ DX CQ DX LP - Time: 0455Z - DXCC: 162 -[24-09-2024 11:54:55] INFO S7B56C863|spot 99 callsign=FK4QX rx_freq=21.270000 tx_freq=0.000000 mode= color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RC7KY timestamp=1727153695 lifetime_seconds=30 priority=5 comment=CQ DX CQ DX LP [] trigger_action=TUNE -[24-09-2024 11:54:55] INFO R20|0|99 -[24-09-2024 11:54:55] INFO S517A2662|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:54:55] INFO S517A2662|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:54:55] INFO S517A2662|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:54:55] INFO S517A2662|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:54:55] INFO S517A2662|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:54:55] INFO S517A2662|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:54:55] INFO S517A2662|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:54:55] INFO S517A2662|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:54:55] INFO S517A2662|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:54:56] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:54:57] INFO DX: DL1YDR - Spotter: SV1DPJ - Freq: 14000.5 - Band: 20M - Mode: CW - Comment: 16 dB 12 WPM CQ - Time: 0454Z - DXCC: 230 -[24-09-2024 11:54:57] INFO S7B56C863|spot 100 callsign=DL1YDR rx_freq=14.000500 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=SV1DPJ timestamp=1727153697 lifetime_seconds=30 priority=5 comment=16 dB 12 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:57] INFO R21|0|100 -[24-09-2024 11:54:58] INFO DX: RK3ER - Spotter: TI7W - Freq: 7024.9 - Band: 40M - Mode: CW - Comment: 18 dB 26 WPM CQ - Time: 0454Z - DXCC: 54 -[24-09-2024 11:54:58] INFO S7B56C863|spot 101 callsign=RK3ER rx_freq=7.024900 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=TI7W timestamp=1727153698 lifetime_seconds=30 priority=5 comment=18 dB 26 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:54:58] INFO R22|0|101 -[24-09-2024 11:55:01] INFO Message reçu du client: XV9Q - -[24-09-2024 11:55:01] INFO Message reçu du client: XV9Q - -[24-09-2024 11:55:01] INFO Message reçu du client: SH/DX 30 - -[24-09-2024 11:55:03] INFO client connected[::1]:64719 -[24-09-2024 11:55:06] INFO DX: 3Z600WOL - Spotter: HA1VHF - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 31 dB 21 WPM CQ - Time: 0455Z - DXCC: 269 -[24-09-2024 11:55:06] INFO S7B56C863|spot 102 callsign=3Z600WOL rx_freq=7.022000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=HA1VHF timestamp=1727153706 lifetime_seconds=30 priority=5 comment=31 dB 21 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:06] INFO R23|0|102 -[24-09-2024 11:55:07] INFO S0|spot 86 removed -[24-09-2024 11:55:07] INFO deleted spot 86 from database -[24-09-2024 11:55:07] INFO S0|spot 87 removed -[24-09-2024 11:55:07] INFO deleted spot 87 from database -[24-09-2024 11:55:08] INFO DX: HB9CCL - Spotter: W1NT - Freq: 14021.6 - Band: 20M - Mode: CW - Comment: 30 dB 20 WPM CQ - Time: 0455Z - DXCC: 287 -[24-09-2024 11:55:08] INFO S7B56C863|spot 103 callsign=HB9CCL rx_freq=14.021600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727153708 lifetime_seconds=30 priority=5 comment=30 dB 20 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:08] INFO R24|0|103 -[24-09-2024 11:55:08] INFO S0|spot 88 removed -[24-09-2024 11:55:08] INFO deleted spot 88 from database -[24-09-2024 11:55:08] INFO DX: EA1FDE - Spotter: ND7K - Freq: 14017.9 - Band: 20M - Mode: CW - Comment: 14 dB 19 WPM CQ - Time: 0455Z - DXCC: 281 -[24-09-2024 11:55:08] INFO S7B56C863|spot 104 callsign=EA1FDE rx_freq=14.017900 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=ND7K timestamp=1727153708 lifetime_seconds=30 priority=5 comment=14 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:08] INFO R25|0|104 -[24-09-2024 11:55:09] INFO S0|spot 89 removed -[24-09-2024 11:55:09] INFO deleted spot 89 from database -[24-09-2024 11:55:09] INFO DX: R7CD - Spotter: DF2CK - Freq: 14020.3 - Band: 20M - Mode: CW - Comment: 36 dB 28 WPM CQ - Time: 0455Z - DXCC: 54 -[24-09-2024 11:55:09] INFO S7B56C863|spot 105 callsign=R7CD rx_freq=14.020300 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727153709 lifetime_seconds=30 priority=5 comment=36 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:09] INFO R26|0|105 -[24-09-2024 11:55:10] INFO DX: HB9CCL - Spotter: KP3CW - Freq: 14021.6 - Band: 20M - Mode: CW - Comment: 13 dB 20 WPM CQ - Time: 0455Z - DXCC: 287 -[24-09-2024 11:55:11] INFO S2816CBF3|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:11] INFO S2816CBF3|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:11] INFO S2816CBF3|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:11] INFO S2816CBF3|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:11] INFO S2816CBF3|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:11] INFO S2816CBF3|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:11] INFO S2816CBF3|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:11] INFO S2816CBF3|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:11] INFO S2816CBF3|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:12] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:13] INFO (** New Mode **) DX: FK8HM - Spotter: DF2CK - Freq: 14005.0 - Band: 20M - Mode: CW - Comment: 22 dB 23 WPM CQ - Time: 0455Z - DXCC: 162 -[24-09-2024 11:55:13] INFO S7B56C863|spot 106 callsign=FK8HM rx_freq=14.005000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DF2CK timestamp=1727153713 lifetime_seconds=30 priority=2 comment=22 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:13] INFO R28|0|106 -[24-09-2024 11:55:14] INFO S0|spot 90 removed -[24-09-2024 11:55:14] INFO deleted spot 90 from database -[24-09-2024 11:55:15] INFO S0|spot 91 removed -[24-09-2024 11:55:15] INFO deleted spot 91 from database -[24-09-2024 11:55:16] INFO (** New Band **) DX: IT9IVU - Spotter: KM3T - Freq: 7034.7 - Band: 40M - Mode: CW - Comment: 15 dB 24 WPM CQ - Time: 0455Z - DXCC: 248 -[24-09-2024 11:55:16] INFO S7B56C863|spot 107 callsign=IT9IVU rx_freq=7.034700 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=KM3T timestamp=1727153716 lifetime_seconds=30 priority=2 comment=15 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:16] INFO R29|0|107 -[24-09-2024 11:55:16] INFO S5C459D8|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:16] INFO S5C459D8|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:16] INFO S5C459D8|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:16] INFO S5C459D8|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:17] INFO S5C459D8|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:17] INFO S5C459D8|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:17] INFO S5C459D8|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:17] INFO S5C459D8|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:17] INFO S5C459D8|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:17] INFO S39C492C0|spot 106 triggered pan=0x40000000 -[24-09-2024 11:55:17] INFO XV9Q clicked on spot "FK8HM" at 14.005000 -[24-09-2024 11:55:17] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:17] INFO S0|spot 92 removed -[24-09-2024 11:55:17] INFO deleted spot 92 from database -[24-09-2024 11:55:17] INFO S0|spot 93 removed -[24-09-2024 11:55:17] INFO deleted spot 93 from database -[24-09-2024 11:55:18] INFO S0|spot 94 removed -[24-09-2024 11:55:18] INFO deleted spot 94 from database -[24-09-2024 11:55:19] INFO S56699B63|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:19] INFO S56699B63|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:19] INFO S56699B63|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:19] INFO S56699B63|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:19] INFO S56699B63|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:19] INFO S56699B63|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:19] INFO S56699B63|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:19] INFO S56699B63|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:19] INFO S56699B63|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:19] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:19] INFO DX: KH6RS - Spotter: JI1HFJ - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 15 dB 22 WPM NCDXF BCN - Time: 0455Z - DXCC: 110 -[24-09-2024 11:55:19] INFO S7B56C863|spot 108 callsign=KH6RS rx_freq=28.200001 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=JI1HFJ timestamp=1727153719 lifetime_seconds=30 priority=5 comment=15 dB 22 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:55:19] INFO R30|0|108 -[24-09-2024 11:55:20] INFO S39C492C0|spot 103 triggered pan=0x40000000 -[24-09-2024 11:55:20] INFO XV9Q clicked on spot "HB9CCL" at 14.021600 -[24-09-2024 11:55:20] INFO S0|spot 95 removed -[24-09-2024 11:55:20] INFO deleted spot 95 from database -[24-09-2024 11:55:21] INFO S0|spot 96 removed -[24-09-2024 11:55:21] INFO deleted spot 96 from database -[24-09-2024 11:55:22] INFO S39AF623D|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:22] INFO S39AF623D|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:22] INFO S39AF623D|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:22] INFO S39AF623D|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:22] INFO S39AF623D|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:22] INFO S39AF623D|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:22] INFO S39AF623D|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:22] INFO S39AF623D|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:22] INFO S39AF623D|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:22] INFO S0|spot 97 removed -[24-09-2024 11:55:22] INFO deleted spot 97 from database -[24-09-2024 11:55:22] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:24] INFO DX: DJ2PH - Spotter: W1NT - Freq: 14056.0 - Band: 20M - Mode: CW - Comment: 17 dB 18 WPM CQ - Time: 0455Z - DXCC: 230 -[24-09-2024 11:55:25] INFO S0|spot 98 removed -[24-09-2024 11:55:25] INFO deleted spot 98 from database -[24-09-2024 11:55:25] INFO S0|spot 99 removed -[24-09-2024 11:55:25] INFO deleted spot 99 from database -[24-09-2024 11:55:26] INFO (** New Band **) DX: OE8TIR - Spotter: DM6EE - Freq: 7028.0 - Band: 40M - Mode: CW - Comment: 11 dB 24 WPM CQ - Time: 0455Z - DXCC: 206 -[24-09-2024 11:55:26] INFO S7B56C863|spot 109 callsign=DJ2PH rx_freq=14.056000 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727153724 lifetime_seconds=30 priority=5 comment=17 dB 18 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:26] INFO R31|0|109 -[24-09-2024 11:55:26] INFO S7B56C863|spot 110 callsign=OE8TIR rx_freq=7.028000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DM6EE timestamp=1727153726 lifetime_seconds=30 priority=2 comment=11 dB 24 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:26] INFO R32|0|110 -[24-09-2024 11:55:27] INFO S0|spot 100 removed -[24-09-2024 11:55:27] INFO deleted spot 100 from database -[24-09-2024 11:55:27] INFO DX: DJ2PH - Spotter: RK3TD - Freq: 14056.0 - Band: 20M - Mode: CW - Comment: 12 dB 18 WPM CQ - Time: 0455Z - DXCC: 230 -[24-09-2024 11:55:29] INFO S0|spot 101 removed -[24-09-2024 11:55:29] INFO deleted spot 101 from database -[24-09-2024 11:55:36] INFO S0|spot 102 removed -[24-09-2024 11:55:36] INFO deleted spot 102 from database -[24-09-2024 11:55:36] INFO DX: SP5XO - Spotter: RU9CZD - Freq: 14038.9 - Band: 20M - Mode: CW - Comment: 16 dB 17 WPM CQ - Time: 0455Z - DXCC: 269 -[24-09-2024 11:55:37] INFO S7B56C863|spot 111 callsign=SP5XO rx_freq=14.038900 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RU9CZD timestamp=1727153736 lifetime_seconds=30 priority=5 comment=16 dB 17 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:37] INFO R34|0|111 -[24-09-2024 11:55:37] INFO S0|spot 103 removed -[24-09-2024 11:55:37] INFO deleted spot 103 from database -[24-09-2024 11:55:37] INFO DX: LZ3QE - Spotter: RK3TD - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 26 dB 23 WPM CQ - Time: 0455Z - DXCC: 212 -[24-09-2024 11:55:37] INFO S7B56C863|spot 112 callsign=LZ3QE rx_freq=14.023500 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=RK3TD timestamp=1727153737 lifetime_seconds=30 priority=5 comment=26 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:37] INFO R35|0|112 -[24-09-2024 11:55:38] INFO DX: SP5XO - Spotter: RK3TD - Freq: 14039.0 - Band: 20M - Mode: CW - Comment: 28 dB 17 WPM CQ - Time: 0455Z - DXCC: 269 -[24-09-2024 11:55:38] INFO S7B56C863|spot 111 removed -[24-09-2024 11:55:38] INFO R37|0| -[24-09-2024 11:55:38] INFO R36|500000BC|Invalid spot index (out of range or not found) -[24-09-2024 11:55:38] INFO S0|spot 104 removed -[24-09-2024 11:55:38] INFO deleted spot 104 from database -[24-09-2024 11:55:39] INFO S0|spot 105 removed -[24-09-2024 11:55:39] INFO deleted spot 105 from database -[24-09-2024 11:55:39] INFO S57814546|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:39] INFO S57814546|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:39] INFO S57814546|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:39] INFO S57814546|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:39] INFO S57814546|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:39] INFO S57814546|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:39] INFO S57814546|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:39] INFO S57814546|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:39] INFO S57814546|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:39] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:42] INFO S102E2E23|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:42] INFO S102E2E23|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:42] INFO S102E2E23|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:42] INFO S102E2E23|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:42] INFO S102E2E23|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:42] INFO S102E2E23|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:42] INFO S102E2E23|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:42] INFO S102E2E23|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:42] INFO S102E2E23|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:42] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:43] INFO S0|spot 106 removed -[24-09-2024 11:55:43] INFO deleted spot 106 from database -[24-09-2024 11:55:44] INFO S0|wan upnp_supported=0 public_upnp_tls_port=-1 public_upnp_udp_port=-1 -[24-09-2024 11:55:45] INFO S75A79577|radio slices=3 panadapters=3 lineout_gain=65 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 -[24-09-2024 11:55:45] INFO S75A79577|radio filter_sharpness VOICE level=2 auto_level=1 -[24-09-2024 11:55:45] INFO S75A79577|radio filter_sharpness CW level=2 auto_level=1 -[24-09-2024 11:55:45] INFO S75A79577|radio filter_sharpness DIGITAL level=0 auto_level=0 -[24-09-2024 11:55:45] INFO S75A79577|radio static_net_params ip= gateway= netmask= -[24-09-2024 11:55:45] INFO S75A79577|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 -[24-09-2024 11:55:45] INFO S75A79577|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=1 tx1_enabled=1 tx2_enabled=1 tx3_enabled=1 tx_delay=0 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 -[24-09-2024 11:55:45] INFO S75A79577|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 -[24-09-2024 11:55:45] INFO S75A79577|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 -[24-09-2024 11:55:45] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= -[24-09-2024 11:55:45] INFO S0|spot 107 removed -[24-09-2024 11:55:45] INFO deleted spot 107 from database -[24-09-2024 11:55:45] INFO S0|wan server_connected=1 radio_authenticated=1 -[24-09-2024 11:55:49] INFO (** New Band **) DX: F4IGG - Spotter: EA5WU - Freq: 7016.0 - Band: 40M - Mode: CW - Comment: 16 dB 23 WPM CQ - Time: 0455Z - DXCC: 227 -[24-09-2024 11:55:49] INFO S7B56C863|spot 113 callsign=F4IGG rx_freq=7.016000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=EA5WU timestamp=1727153749 lifetime_seconds=30 priority=2 comment=16 dB 23 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:49] INFO R38|0|113 -[24-09-2024 11:55:49] INFO S0|spot 108 removed -[24-09-2024 11:55:49] INFO deleted spot 108 from database -[24-09-2024 11:55:49] INFO (** New Band **) DX: F4IGG - Spotter: OK1FCJ - Freq: 7016.0 - Band: 40M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0455Z - DXCC: 227 -[24-09-2024 11:55:49] INFO DX: W9UTW - Spotter: W1NT - Freq: 7030.2 - Band: 40M - Mode: CW - Comment: 17 dB 15 WPM CQ - Time: 0455Z - DXCC: 291 -[24-09-2024 11:55:49] INFO S7B56C863|spot 114 callsign=W9UTW rx_freq=7.030200 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=W1NT timestamp=1727153749 lifetime_seconds=30 priority=5 comment=17 dB 15 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:49] INFO R40|0|114 -[24-09-2024 11:55:52] INFO DX: JA2IGY - Spotter: KH6LC - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 6 dB 21 WPM NCDXF BCN - Time: 0455Z - DXCC: 339 -[24-09-2024 11:55:52] INFO S7B56C863|spot 115 callsign=JA2IGY rx_freq=28.200001 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=KH6LC timestamp=1727153752 lifetime_seconds=30 priority=5 comment=6 dB 21 WPM NCDXF BCN [CW] trigger_action=TUNE -[24-09-2024 11:55:52] INFO R41|0|115 -[24-09-2024 11:55:53] INFO (** New Band **) DX: TM44LG - Spotter: DK3UA - Freq: 3520.0 - Band: 80M - Mode: CW - Comment: 18 dB 28 WPM CQ - Time: 0455Z - DXCC: 227 -[24-09-2024 11:55:53] INFO S7B56C863|spot 116 callsign=TM44LG rx_freq=3.520000 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=DK3UA timestamp=1727153753 lifetime_seconds=30 priority=2 comment=18 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:53] INFO R42|0|116 -[24-09-2024 11:55:54] INFO DX: IK5VLL - Spotter: LZ3CB - Freq: 10139.6 - Band: 30M - Mode: CW - Comment: 10 dB 28 WPM CQ - Time: 0455Z - DXCC: 248 -[24-09-2024 11:55:54] INFO S7B56C863|spot 117 callsign=IK5VLL rx_freq=10.139600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=LZ3CB timestamp=1727153754 lifetime_seconds=30 priority=5 comment=10 dB 28 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:54] INFO R43|0|117 -[24-09-2024 11:55:56] INFO S0|spot 109 removed -[24-09-2024 11:55:56] INFO deleted spot 109 from database -[24-09-2024 11:55:56] INFO S0|spot 110 removed -[24-09-2024 11:55:56] INFO deleted spot 110 from database -[24-09-2024 11:55:58] INFO DX: NB3W - Spotter: N9CO - Freq: 7028.6 - Band: 40M - Mode: CW - Comment: 21 dB 19 WPM CQ - Time: 0455Z - DXCC: 291 -[24-09-2024 11:55:58] INFO S7B56C863|spot 118 callsign=NB3W rx_freq=7.028600 tx_freq=0.000000 mode=CW color=#eaeaea background_color=#000000 source=FlexDXCluster spotter_callsign=N9CO timestamp=1727153758 lifetime_seconds=30 priority=5 comment=21 dB 19 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:55:58] INFO R44|0|118 -[24-09-2024 11:55:59] INFO DX: NB3W - Spotter: K3PA - Freq: 7028.6 - Band: 40M - Mode: CW - Comment: 9 dB 19 WPM CQ - Time: 0456Z - DXCC: 291 -[24-09-2024 11:56:02] INFO (** New Band **) DX: OK7FL - Spotter: W8WWV - Freq: 7029.8 - Band: 40M - Mode: CW - Comment: 20 dB 22 WPM CQ - Time: 0456Z - DXCC: 503 -[24-09-2024 11:56:02] INFO S7B56C863|spot 119 callsign=OK7FL rx_freq=7.029800 tx_freq=0.000000 mode=CW color=#f9f508 background_color=#000000 source=FlexDXCluster spotter_callsign=W8WWV timestamp=1727153762 lifetime_seconds=30 priority=2 comment=20 dB 22 WPM CQ [CW] trigger_action=TUNE -[24-09-2024 11:56:02] INFO R46|0|119 -[24-09-2024 11:56:02] INFO (** New Band **) DX: OK7FL - Spotter: GI4DOH - Freq: 7029.8 - Band: 40M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0456Z - DXCC: 503 -[24-09-2024 11:56:07] INFO S0|spot 112 removed -[24-09-2024 11:56:07] INFO deleted spot 112 from database +[26-09-2024 09:22:22] INFO config loaded. +[26-09-2024 09:22:22] INFO Callsign: XV9Q +[26-09-2024 09:22:22] INFO deleting existing database +[26-09-2024 09:22:22] INFO Opening SQLite database +[26-09-2024 09:22:22] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:22:22] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:22:22] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:22:22] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:22:22] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:22] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:23] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:24] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:25] ERROR Error reading message: read tcp 10.10.10.106:55567->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 09:22:30] INFO config loaded. +[26-09-2024 09:22:30] INFO Callsign: XV9Q +[26-09-2024 09:22:30] INFO deleting existing database +[26-09-2024 09:22:30] INFO Opening SQLite database +[26-09-2024 09:22:30] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:22:30] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:22:30] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:22:30] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:22:30] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:22:30] INFO Found login prompt...sending callsign +[26-09-2024 09:22:32] INFO Skimmer is on as defined in the config file +[26-09-2024 09:22:32] INFO FT8 is off as defined in the config file +[26-09-2024 09:22:35] INFO DX: OK1CF - Spotter: PA0MBO - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 5 dB 22 WPM CQ - Time: 0222Z - DXCC: 503 +[26-09-2024 09:22:37] INFO DX: KN4YHP - Spotter: W6YX - Freq: 21041.0 - Band: 15M - Mode: CW - Comment: 5 dB 14 WPM CQ - Time: 0222Z - DXCC: 291 +[26-09-2024 09:22:39] INFO DX: WW0SS - Spotter: W8WWV - Freq: 7054.4 - Band: 40M - Mode: CW - Comment: 11 dB 17 WPM CQ - Time: 0222Z - DXCC: 291 +[26-09-2024 09:24:36] INFO config loaded. +[26-09-2024 09:24:36] INFO Callsign: XV9Q +[26-09-2024 09:24:36] INFO deleting existing database +[26-09-2024 09:24:36] INFO Opening SQLite database +[26-09-2024 09:24:36] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:24:36] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:24:36] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:24:36] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:24:43] ERROR unrecognized token: "!" +[26-09-2024 09:24:43] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:24:44] INFO Found login prompt...sending callsign +[26-09-2024 09:24:44] ERROR unrecognized token: "!" +[26-09-2024 09:24:46] INFO Skimmer is on as defined in the config file +[26-09-2024 09:24:46] INFO FT8 is off as defined in the config file +[26-09-2024 09:24:46] ERROR unrecognized token: "!" +[26-09-2024 09:24:47] ERROR unrecognized token: "!" +[26-09-2024 09:24:48] ERROR unrecognized token: "!" +[26-09-2024 09:25:09] INFO config loaded. +[26-09-2024 09:25:09] INFO Callsign: XV9Q +[26-09-2024 09:25:09] INFO deleting existing database +[26-09-2024 09:25:09] INFO Opening SQLite database +[26-09-2024 09:25:09] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:25:09] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:25:09] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:25:09] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:25:20] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:25:30] INFO Found login prompt...sending callsign +[26-09-2024 09:25:36] INFO Skimmer is on as defined in the config file +[26-09-2024 09:25:36] INFO FT8 is off as defined in the config file +[26-09-2024 09:26:00] ERROR unrecognized token: "!" +[26-09-2024 09:26:05] ERROR unrecognized token: "!" +[26-09-2024 09:26:24] INFO config loaded. +[26-09-2024 09:26:24] INFO Callsign: XV9Q +[26-09-2024 09:26:24] INFO deleting existing database +[26-09-2024 09:26:24] INFO Opening SQLite database +[26-09-2024 09:26:24] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:26:24] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:26:24] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:26:24] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:26:24] ERROR unrecognized token: "!" +[26-09-2024 09:26:24] ERROR unrecognized token: "!" +[26-09-2024 09:26:24] ERROR unrecognized token: "!" +[26-09-2024 09:26:24] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:26:25] INFO Found login prompt...sending callsign +[26-09-2024 09:26:25] ERROR unrecognized token: "!" +[26-09-2024 09:26:27] INFO Skimmer is on as defined in the config file +[26-09-2024 09:26:27] INFO FT8 is off as defined in the config file +[26-09-2024 09:26:27] ERROR unrecognized token: "!" +[26-09-2024 09:26:28] INFO (** New Band **) DX: FY5FY - Spotter: YO2MAX - Freq: 7003.0 - Band: 40M - Mode: CW - Comment: 12 dB 25 WPM CQ - Time: 0226Z - DXCC: 63 +[26-09-2024 09:27:11] INFO config loaded. +[26-09-2024 09:27:11] INFO Callsign: XV9Q +[26-09-2024 09:27:11] INFO deleting existing database +[26-09-2024 09:27:11] INFO Opening SQLite database +[26-09-2024 09:27:11] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:27:11] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:27:11] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:27:11] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:27:11] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:27:11] INFO Found login prompt...sending callsign +[26-09-2024 09:27:13] INFO Skimmer is on as defined in the config file +[26-09-2024 09:27:13] INFO FT8 is off as defined in the config file +[26-09-2024 09:27:14] INFO DX: 5Z4PA - Spotter: DC8YZ - Freq: 14005.0 - Band: 20M - Mode: CW - Comment: 5 dB 29 WPM CQ - Time: 0227Z - DXCC: 430 +[26-09-2024 09:27:15] INFO (** New Band **) DX: 4X6FB - Spotter: MM0ZBH - Freq: 7029.0 - Band: 40M - Mode: CW - Comment: 29 dB 23 WPM CQ - Time: 0227Z - DXCC: 336 +[26-09-2024 09:27:15] INFO DX: W5BIB - Spotter: VE3EID - Freq: 7034.0 - Band: 40M - Mode: CW - Comment: 17 dB 17 WPM CQ - Time: 0227Z - DXCC: 291 +[26-09-2024 09:27:16] INFO DX: WB2FQL - Spotter: W2MV - Freq: 7028.0 - Band: 40M - Mode: CW - Comment: 29 dB 20 WPM CQ - Time: 0227Z - DXCC: 291 +[26-09-2024 09:27:18] INFO DX: W1AW - Spotter: DL8LAS - Freq: 7047.5 - Band: 40M - Mode: CW - Comment: 10 dB 24 WPM CQ - Time: 0227Z - DXCC: 291 +[26-09-2024 09:27:20] INFO (** New Band **) DX: OE1TKW - Spotter: MM3NDH - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 19 dB 28 WPM CQ - Time: 0227Z - DXCC: 206 +[26-09-2024 09:27:24] INFO (** New Band **) DX: OE1TKW - Spotter: G4ZFE - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 11 dB 28 WPM CQ - Time: 0227Z - DXCC: 206 +[26-09-2024 09:27:34] INFO config loaded. +[26-09-2024 09:27:34] INFO Callsign: XV9Q +[26-09-2024 09:27:34] INFO deleting existing database +[26-09-2024 09:27:34] INFO Opening SQLite database +[26-09-2024 09:27:34] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:27:34] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:27:34] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:27:34] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:27:35] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:27:35] INFO Found login prompt...sending callsign +[26-09-2024 09:27:37] INFO Skimmer is on as defined in the config file +[26-09-2024 09:27:37] INFO FT8 is off as defined in the config file +[26-09-2024 09:27:38] INFO (** New Band **) DX: 4X6FB - Spotter: HA6PX - Freq: 7029.0 - Band: 40M - Mode: CW - Comment: 10 dB 23 WPM CQ - Time: 0227Z - DXCC: 336 +[26-09-2024 09:27:38] INFO (** New Band **) DX: FY5FY - Spotter: OH4KA - Freq: 7003.0 - Band: 40M - Mode: CW - Comment: 21 dB 25 WPM CQ - Time: 0227Z - DXCC: 63 +[26-09-2024 09:27:39] INFO (** New Band **) DX: OP5K - Spotter: HB9DCO - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 10 dB 21 WPM CQ - Time: 0227Z - DXCC: 209 +[26-09-2024 09:27:39] INFO DX: KH6RS - Spotter: K6FOD - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 6 dB 22 WPM NCDXF BCN - Time: 0227Z - DXCC: 110 +[26-09-2024 09:27:44] INFO DX: KG6VKC - Spotter: NG7M - Freq: 14035.5 - Band: 20M - Mode: CW - Comment: 12 dB 12 WPM CQ - Time: 0227Z - DXCC: 291 +[26-09-2024 09:27:45] INFO (** New Band **) DX: KJ7VRS - Spotter: KA7OEI - Freq: 3532.0 - Band: 80M - Mode: CW - Comment: 26 dB 15 WPM CQ - Time: 0227Z - DXCC: 291 +[26-09-2024 09:27:54] INFO DX: W6WX - Spotter: N6TV - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 38 dB 23 WPM NCDXF BCN - Time: 0227Z - DXCC: 291 +[26-09-2024 09:28:04] INFO (** New Mode **) DX: K4JNT - Spotter: VE7CC - Freq: 14085.5 - Band: 20M - Mode: RTTY - Comment: +13 dB CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:04] INFO (** New Band **) DX: OE1TKW - Spotter: W1NT - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 16 dB 29 WPM CQ - Time: 0228Z - DXCC: 206 +[26-09-2024 09:28:07] INFO DX: VE3HGF - Spotter: NT6Q - Freq: 14012.0 - Band: 20M - Mode: CW - Comment: 11 dB 35 WPM CQ - Time: 0228Z - DXCC: 1 +[26-09-2024 09:28:08] INFO DX: VE3HGF - Spotter: VE6JY - Freq: 14012.1 - Band: 20M - Mode: CW - Comment: 9 dB 36 WPM CQ - Time: 0228Z - DXCC: 1 +[26-09-2024 09:28:11] INFO DX: VK2BPL - Spotter: ZL4YL - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 10 dB 20 WPM CQ - Time: 0228Z - DXCC: 150 +[26-09-2024 09:28:19] INFO (** New Band **) DX: DF6YT - Spotter: EA2CW - Freq: 7006.0 - Band: 40M - Mode: CW - Comment: 4 dB 31 WPM CQ - Time: 0228Z - DXCC: 230 +[26-09-2024 09:28:20] INFO (** New Band **) DX: DF6YT - Spotter: YO2MAX - Freq: 7006.0 - Band: 40M - Mode: CW - Comment: 10 dB 32 WPM CQ - Time: 0228Z - DXCC: 230 +[26-09-2024 09:28:22] INFO DX: VK2BPL - Spotter: ZL3X - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 15 dB 19 WPM CQ - Time: 0228Z - DXCC: 150 +[26-09-2024 09:28:25] INFO DX: ZL6B - Spotter: VE7CC - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 7 dB 21 WPM NCDXF BCN - Time: 0228Z - DXCC: 170 +[26-09-2024 09:28:25] INFO DX: WB2FQL - Spotter: AA0O - Freq: 7030.7 - Band: 40M - Mode: CW - Comment: 11 dB 18 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:27] INFO DX: OK1CF - Spotter: UA4CC - Freq: 1825.9 - Band: 17M - Mode: CW - Comment: 5 dB 22 WPM CQ - Time: 0228Z - DXCC: 503 +[26-09-2024 09:28:35] INFO DX: N7LP - Spotter: VE7CC - Freq: 10121.5 - Band: 30M - Mode: CW - Comment: 7 dB 19 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:36] INFO DX: N7LP - Spotter: NG7M - Freq: 10121.5 - Band: 30M - Mode: CW - Comment: 26 dB 18 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:38] INFO DX: W6NUC - Spotter: NT6Q - Freq: 7010.0 - Band: 40M - Mode: CW - Comment: 27 dB 22 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:42] INFO (** New Band **) DX: F8FCA - Spotter: SM7IUN - Freq: 7030.3 - Band: 40M - Mode: CW - Comment: 1 dB 15 WPM CQ - Time: 0228Z - DXCC: 227 +[26-09-2024 09:28:48] INFO DX: K5TF - Spotter: AC0C - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 18 dB 22 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:51] INFO DX: W8ACM - Spotter: TI7W - Freq: 7021.8 - Band: 40M - Mode: CW - Comment: 20 dB 23 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:57] INFO DX: K4JJW - Spotter: KA7OEI - Freq: 7038.0 - Band: 40M - Mode: CW - Comment: 24 dB 24 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:28:58] INFO DX: N5NLP - Spotter: AC0C - Freq: 7035.0 - Band: 40M - Mode: CW - Comment: 45 dB 13 WPM CQ - Time: 0228Z - DXCC: 291 +[26-09-2024 09:29:01] INFO DX: N5NLP - Spotter: WE9V - Freq: 7035.0 - Band: 40M - Mode: CW - Comment: 34 dB 13 WPM CQ - Time: 0229Z - DXCC: 291 +[26-09-2024 09:29:08] INFO DX: VE3HGF - Spotter: AC0C - Freq: 7015.0 - Band: 40M - Mode: CW - Comment: 24 dB 35 WPM CQ - Time: 0229Z - DXCC: 1 +[26-09-2024 09:29:10] INFO DX: VE3HGF - Spotter: KD2OGR - Freq: 7015.0 - Band: 40M - Mode: CW - Comment: 18 dB 35 WPM CQ - Time: 0229Z - DXCC: 1 +[26-09-2024 09:29:12] INFO DX: RX0F - Spotter: ZL4YL - Freq: 21032.0 - Band: 15M - Mode: CW - Comment: 5 dB 30 WPM CQ - Time: 0229Z - DXCC: 15 +[26-09-2024 09:29:18] INFO DX: OP5K - Spotter: UA4CC - Freq: 21058.1 - Band: 15M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0229Z - DXCC: 209 +[26-09-2024 09:29:26] INFO (** New Band **) DX: AB0BM - Spotter: WA7LNW - Freq: 3540.0 - Band: 80M - Mode: CW - Comment: 14 dB 19 WPM CQ - Time: 0229Z - DXCC: 291 +[26-09-2024 09:29:32] INFO DX: AC7JW - Spotter: WE9V - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0229Z - DXCC: 291 +[26-09-2024 09:29:33] INFO DX: WA2QOF - Spotter: W1NT - Freq: 7055.0 - Band: 40M - Mode: CW - Comment: 34 dB 13 WPM CQ - Time: 0229Z - DXCC: 291 +[26-09-2024 09:29:35] INFO (** New Band **) DX: CS3B - Spotter: KM3T - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 6 dB 22 WPM NCDXF BCN - Time: 0229Z - DXCC: 256 +[26-09-2024 09:29:39] INFO (** New Band **) DX: I2DMD - Spotter: ON6ZQ - Freq: 7024.0 - Band: 40M - Mode: CW - Comment: 29 dB 25 WPM CQ - Time: 0229Z - DXCC: 248 +[26-09-2024 09:30:35] INFO config loaded. +[26-09-2024 09:30:35] INFO Callsign: XV9Q +[26-09-2024 09:30:35] INFO deleting existing database +[26-09-2024 09:30:35] INFO Opening SQLite database +[26-09-2024 09:30:35] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:30:35] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:30:35] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:30:35] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:30:36] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:30:37] INFO Found login prompt...sending callsign +[26-09-2024 09:30:39] INFO FT8 is on as defined in the config file +[26-09-2024 09:30:39] INFO Skimmer is on as defined in the config file +[26-09-2024 09:30:40] INFO (** New Band **) DX: NL7D - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +18 dB 998 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:40] INFO DX: VE6GTX - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1380 Hz - Time: 0230Z - DXCC: 1 +[26-09-2024 09:30:41] INFO (** New Band **) DX: HA1BF - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 762 Hz - Time: 0230Z - DXCC: 239 +[26-09-2024 09:30:41] INFO (** New Band **) DX: CA3TSK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 2647 Hz - Time: 0230Z - DXCC: 112 +[26-09-2024 09:30:42] INFO DX: K5NBL - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 1408 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:42] INFO (** New Band **) DX: CO7CRJ - Spotter: K9IMM - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -19 dB 1785 Hz - Time: 0230Z - DXCC: 70 +[26-09-2024 09:30:43] INFO DX: N6OKU - Spotter: K9IMM - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 1475 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:43] INFO DX: N5EKO - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 937 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:43] INFO DX: KF6JXM - Spotter: K9IMM - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1095 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:44] INFO DX: NC7I - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1220 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:44] INFO DX: KC2NJ - Spotter: NG7M - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 455 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:45] INFO DX: KB8SRX - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1601 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:45] INFO (** New Band **) DX: IZ8VYU - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1927 Hz - Time: 0230Z - DXCC: 248 +[26-09-2024 09:30:46] INFO DX: WX5ET - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 5 dB 1490 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:46] INFO DX: KQ4MMD - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1415 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:47] INFO DX: CE3GKU - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1360 Hz - Time: 0230Z - DXCC: 112 +[26-09-2024 09:30:47] INFO DX: W6AAJ - Spotter: VE3EID - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: + 5 dB 1144 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:48] INFO DX: WD0ANB - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1575 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:48] INFO (** New Band **) DX: XE2YWH - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1615 Hz - Time: 0230Z - DXCC: 50 +[26-09-2024 09:30:48] INFO DX: W5GFM - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1498 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:49] INFO DX: N6ACA - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 2438 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:49] INFO DX: RV9CW - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 1835 Hz - Time: 0230Z - DXCC: 15 +[26-09-2024 09:30:50] INFO DX: N6LLN - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1652 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:50] INFO DX: NA7KR - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1952 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:51] INFO DX: KI4RHR - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 652 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:51] INFO DX: WB5BHS - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 1784 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:51] INFO DX: KF0HCN - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 326 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:52] INFO DX: JA1DCK - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -16 dB 604 Hz - Time: 0230Z - DXCC: 339 +[26-09-2024 09:30:52] INFO DX: K4ZH - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1535 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:53] INFO DX: OD5ZZ - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1682 Hz - Time: 0230Z - DXCC: 354 +[26-09-2024 09:30:53] INFO DX: LU9GDN - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 968 Hz - Time: 0230Z - DXCC: 100 +[26-09-2024 09:30:54] INFO (** Worked **) DX: LA8ENA - Spotter: G4IRN - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 1906 Hz - Time: 0230Z - DXCC: 266 +[26-09-2024 09:30:54] INFO DX: LA8ENA - Spotter: G4IRN - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 1906 Hz - Time: 0230Z - DXCC: 266 +[26-09-2024 09:30:54] INFO DX: YF8AFF - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 1069 Hz - Time: 0230Z - DXCC: 327 +[26-09-2024 09:30:55] INFO DX: RX0F - Spotter: ZL4YL - Freq: 24904.5 - Band: 12M - Mode: CW - Comment: 6 dB 31 WPM CQ - Time: 0230Z - DXCC: 15 +[26-09-2024 09:30:55] INFO DX: NE1V - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2376 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:55] INFO DX: W4IDX - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 887 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:56] INFO DX: W5FZ - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -22 dB 796 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:56] INFO DX: ZL2CA - Spotter: KM3T - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1646 Hz - Time: 0230Z - DXCC: 170 +[26-09-2024 09:30:57] INFO DX: KH6RS - Spotter: KA7OEI - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 31 dB 19 WPM NCDXF BCN - Time: 0230Z - DXCC: 110 +[26-09-2024 09:30:57] INFO (** New Mode **) DX: ZL4KYH - Spotter: KD2YQS - Freq: 21076.2 - Band: 15M - Mode: - Comment: - Time: 0230Z - DXCC: 170 +[26-09-2024 09:30:58] INFO DX: PD1BER - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2156 Hz - Time: 0230Z - DXCC: 263 +[26-09-2024 09:30:58] INFO DX: W3YNI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 705 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:59] INFO DX: W7MD - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 2869 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:59] INFO DX: WA4ZXV - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 2264 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:30:59] INFO (** New Band **) DX: EA3HMM - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -16 dB 1114 Hz - Time: 0230Z - DXCC: 281 +[26-09-2024 09:31:00] INFO (** New Band **) DX: G8KHF - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 517 Hz - Time: 0230Z - DXCC: 223 +[26-09-2024 09:31:00] INFO (** New Band **) DX: F4JCU - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1454 Hz - Time: 0230Z - DXCC: 227 +[26-09-2024 09:31:01] INFO DX: W5APO - Spotter: K9IMM - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1876 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:01] INFO DX: KD0UUU - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 683 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:02] INFO (** New Band **) DX: CO6XX - Spotter: NG7M - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 6 dB 834 Hz - Time: 0230Z - DXCC: 70 +[26-09-2024 09:31:02] INFO DX: WA3MH - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1269 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:03] INFO (** New Band **) DX: CO8LY - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 958 Hz - Time: 0230Z - DXCC: 70 +[26-09-2024 09:31:03] INFO (** New Band **) DX: EA1FCH - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 339 Hz - Time: 0230Z - DXCC: 281 +[26-09-2024 09:31:03] INFO (** New Band **) DX: XE2YWB - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2059 Hz - Time: 0230Z - DXCC: 50 +[26-09-2024 09:31:04] INFO DX: KQ4IIQ - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 676 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:04] INFO DX: N9MSM - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1630 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:05] INFO DX: N4DWD - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 663 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:05] INFO DX: N6JBW - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -16 dB 517 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:06] INFO DX: AC7JW - Spotter: WB6BEE - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 8 dB 24 WPM CQ - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:06] INFO DX: K1GJQ - Spotter: WE9V - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 856 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:06] INFO (** New Band **) DX: F6FHZ - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 770 Hz - Time: 0230Z - DXCC: 227 +[26-09-2024 09:31:07] INFO DX: KI5YYO - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 564 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:07] INFO DX: WK5I - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 5 dB 2672 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:08] INFO (** New Band **) DX: W2GLH - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 277 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:08] INFO DX: N9JOW - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 2166 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:09] INFO DX: AD0K - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1867 Hz - Time: 0230Z - DXCC: 291 +[26-09-2024 09:31:09] INFO DX: PA0ARR - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1344 Hz - Time: 0230Z - DXCC: 263 +[26-09-2024 09:31:09] INFO DX: EA5HM - Spotter: LB9KJ - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 915 Hz - Time: 0230Z - DXCC: 281 +[26-09-2024 09:31:10] INFO (** New Band **) DX: EA1FCH - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 643 Hz - Time: 0230Z - DXCC: 281 +[26-09-2024 09:31:10] INFO DX: TA4SSK - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1171 Hz - Time: 0230Z - DXCC: 390 +[26-09-2024 09:31:11] INFO DX: OK1CF - Spotter: LZ3CB - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 7 dB 22 WPM CQ - Time: 0231Z - DXCC: 503 +[26-09-2024 09:31:11] INFO DX: W4SMF - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 791 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:12] INFO DX: N4XYZ - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 1704 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:12] INFO DX: PY2MR - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1280 Hz - Time: 0231Z - DXCC: 108 +[26-09-2024 09:31:13] INFO DX: JE2BSJ - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 338 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:31:13] INFO (** New Band **) DX: XE1AR - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 4 dB 984 Hz - Time: 0231Z - DXCC: 50 +[26-09-2024 09:31:13] INFO DX: W6WX - Spotter: N6TV - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 38 dB 22 WPM NCDXF BCN - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:14] INFO DX: K5KUA - Spotter: K9LC - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 285 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:14] INFO DX: KF0LHO - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +18 dB 1437 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:15] INFO DX: JH1AQG - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 7 dB 708 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:31:15] INFO (** New Band **) DX: CT3MD - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 634 Hz - Time: 0231Z - DXCC: 256 +[26-09-2024 09:31:16] INFO (** Worked **) DX: JA3KVT - Spotter: K9LC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1989 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:31:16] INFO DX: JA3KVT - Spotter: K9LC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1989 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:31:16] INFO DX: VE3CGD - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 176 Hz - Time: 0231Z - DXCC: 1 +[26-09-2024 09:31:17] INFO DX: K7FR - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1623 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:17] INFO DX: CE3SOC - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1710 Hz - Time: 0231Z - DXCC: 112 +[26-09-2024 09:31:17] INFO DX: RV3IO - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2051 Hz - Time: 0231Z - DXCC: 54 +[26-09-2024 09:31:18] INFO DX: N9KYC - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1708 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:18] INFO (** New Mode **) DX: VA7QI - Spotter: VK2SOL - Freq: 28074.0 - Band: 10M - Mode: - Comment: TNX/FT8 - Time: 0231Z - DXCC: 1 +[26-09-2024 09:31:19] INFO (** New Band **) DX: SP2TQW - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 1519 Hz - Time: 0231Z - DXCC: 269 +[26-09-2024 09:31:19] INFO (** New Band **) DX: KJ7VRS - Spotter: W6YX - Freq: 3532.0 - Band: 80M - Mode: CW - Comment: 23 dB 15 WPM CQ - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:20] INFO DX: KD0XD - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2174 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:20] INFO DX: KD6SPN - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1788 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:21] INFO DX: K7KIB - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1610 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:37] INFO config loaded. +[26-09-2024 09:31:37] INFO Callsign: XV9Q +[26-09-2024 09:31:37] INFO deleting existing database +[26-09-2024 09:31:37] INFO Opening SQLite database +[26-09-2024 09:31:37] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:31:37] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:31:37] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:31:37] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:31:38] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:31:38] INFO Found login prompt...sending callsign +[26-09-2024 09:31:40] INFO FT8 is on as defined in the config file +[26-09-2024 09:31:40] INFO Skimmer is on as defined in the config file +[26-09-2024 09:31:41] INFO (** New Band **) DX: CO2AN - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +19 dB 2230 Hz - Time: 0231Z - DXCC: 70 +[26-09-2024 09:31:42] INFO DX: 4Z1GY - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 388 Hz - Time: 0231Z - DXCC: 336 +[26-09-2024 09:31:42] INFO DX: W5GFM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +11 dB 1475 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:42] INFO DX: KD7L - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1390 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:43] INFO DX: K4RGN - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 679 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:43] INFO DX: KD4YXM - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 648 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:43] INFO DX: VE3TEP - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1223 Hz - Time: 0231Z - DXCC: 1 +[26-09-2024 09:31:44] INFO (** New Band **) DX: WA4MB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 7 dB 1394 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:44] INFO (** New Band **) DX: KA9FOX - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 5 dB 1995 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:45] INFO (** New Band **) DX: KA9SOG - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 2193 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:45] INFO DX: KI8JP - Spotter: K7CO - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 484 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:45] INFO DX: N6HOY - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +21 dB 2588 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:46] INFO DX: CE3SOC - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1819 Hz - Time: 0231Z - DXCC: 112 +[26-09-2024 09:31:46] INFO DX: W8LYO - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2823 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:46] INFO DX: DL8TV - Spotter: W1NT - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 1291 Hz - Time: 0231Z - DXCC: 230 +[26-09-2024 09:31:47] INFO DX: N2DSW - Spotter: W1NT - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: + 9 dB 932 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:47] INFO (** New Band **) DX: HB9CXZ - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +14 dB 2055 Hz - Time: 0231Z - DXCC: 287 +[26-09-2024 09:31:48] INFO DX: LU9GDN - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 866 Hz - Time: 0231Z - DXCC: 100 +[26-09-2024 09:31:48] INFO DX: N7TBR - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 1622 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:48] INFO DX: EC3ALS - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 2865 Hz - Time: 0231Z - DXCC: 281 +[26-09-2024 09:31:49] INFO DX: N7WFK - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1167 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:49] INFO (** New Band **) DX: YO4NT - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 1123 Hz - Time: 0231Z - DXCC: 275 +[26-09-2024 09:31:50] INFO (** New Mode **) DX: YV4MJP - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2954 Hz - Time: 0231Z - DXCC: 148 +[26-09-2024 09:31:50] INFO DX: KD9ZQN - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 183 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:51] INFO DX: WB6WUW - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 2284 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:51] INFO DX: KQ4MMD - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1505 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:51] INFO (** New Band **) DX: IZ8VYU - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1808 Hz - Time: 0231Z - DXCC: 248 +[26-09-2024 09:31:52] INFO DX: JA2HNP - Spotter: NG7M - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1187 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:31:52] INFO DX: W6WML - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1236 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:53] INFO DX: CE3GKU - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1126 Hz - Time: 0231Z - DXCC: 112 +[26-09-2024 09:31:53] INFO (** New Band **) DX: DJ2MS - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 920 Hz - Time: 0231Z - DXCC: 230 +[26-09-2024 09:31:54] INFO (** New Band **) DX: KF9UG - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +19 dB 1169 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:54] INFO (** New Band **) DX: EA1IOK - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 2682 Hz - Time: 0231Z - DXCC: 281 +[26-09-2024 09:31:55] INFO DX: W6NUC - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1173 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:55] INFO DX: KK7UNF - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2089 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:55] INFO (** New Band **) DX: TA4I - Spotter: N9CO - Freq: 7034.8 - Band: 40M - Mode: CW - Comment: 21 dB 21 WPM CQ - Time: 0231Z - DXCC: 390 +[26-09-2024 09:31:56] INFO DX: VK4ZD - Spotter: N6TV - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 2 dB 1710 Hz - Time: 0231Z - DXCC: 150 +[26-09-2024 09:31:56] INFO DX: W5RTM - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 1908 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:57] INFO DX: KK5JY - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 436 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:57] INFO DX: N6NKT - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 2310 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:58] INFO DX: LU8GMM - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 2 dB 2165 Hz - Time: 0231Z - DXCC: 100 +[26-09-2024 09:31:58] INFO DX: ZL2CA - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1609 Hz - Time: 0231Z - DXCC: 170 +[26-09-2024 09:31:59] INFO (** New Band **) DX: VA7MPG - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 1720 Hz - Time: 0231Z - DXCC: 1 +[26-09-2024 09:31:59] INFO DX: W8CO - Spotter: WE9V - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: +10 dB 1295 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:31:59] INFO (** New DXCC **) DX: HI3JCC - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1398 Hz - Time: 0231Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:32:00] INFO (** New DXCC **) DX: PJ2MAN - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 2107 Hz - Time: 0231Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:32:00] INFO DX: N8HRZ - Spotter: KM3T - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -21 dB 2551 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:01] INFO (** New Band **) DX: HB9HSJ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 994 Hz - Time: 0231Z - DXCC: 287 +[26-09-2024 09:32:01] INFO DX: N1NRL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2288 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:02] INFO (** New Band **) DX: UV5EEO - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 911 Hz - Time: 0231Z - DXCC: 288 +[26-09-2024 09:32:02] INFO DX: WW2LL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 734 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:03] INFO (** New Mode **) DX: AD7SA - Spotter: NQ9N - Freq: 14165.0 - Band: 20M - Mode: - Comment: - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:03] INFO DX: W4MQC - Spotter: W4KAZ - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:04] INFO DX: N6JBW - Spotter: W1NT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1614 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:04] INFO DX: KK7XV - Spotter: K7CO - Freq: 7065.8 - Band: 40M - Mode: CW - Comment: 16 dB 11 WPM CQ - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:04] INFO DX: K8AGB - Spotter: W1NT - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -15 dB 490 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:05] INFO DX: N4NJJ - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 2114 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:05] INFO DX: WA1KLI - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 518 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:06] INFO (** New Band **) DX: YT3PL - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2158 Hz - Time: 0231Z - DXCC: 296 +[26-09-2024 09:32:06] INFO DX: KG7ASX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 1844 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:07] INFO DX: WD0CUF - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +22 dB 462 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:07] INFO DX: N8HRZ - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1206 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:08] INFO DX: KA6VKP - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 2991 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:08] INFO DX: W3UNO - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 854 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:08] INFO DX: KA1MXL - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 2381 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:09] INFO DX: K0QH - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1602 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:09] INFO (** New Band **) DX: OK2ZDL - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2382 Hz - Time: 0231Z - DXCC: 503 +[26-09-2024 09:32:10] INFO (** New Band **) DX: SV3EXP - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 2228 Hz - Time: 0231Z - DXCC: 236 +[26-09-2024 09:32:10] INFO DX: KK7XV - Spotter: NT6Q - Freq: 7065.8 - Band: 40M - Mode: CW - Comment: 24 dB 11 WPM CQ - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:11] INFO DX: K6AKW - Spotter: K9IMM - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 7 dB 967 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:11] INFO DX: KM0PAR - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1487 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:12] INFO DX: KA8IIM - Spotter: K9IMM - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1520 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:12] INFO (** New Band **) DX: KC1JTS - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 7 dB 509 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:13] INFO DX: W3YNI - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 498 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:13] INFO (** Worked **) DX: HZ1TT - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2151 Hz - Time: 0231Z - DXCC: 378 +[26-09-2024 09:32:13] INFO DX: HZ1TT - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2151 Hz - Time: 0231Z - DXCC: 378 +[26-09-2024 09:32:14] INFO DX: AD0BK - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2818 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:14] INFO DX: KD2BRV - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 534 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:14] INFO DX: NW1L - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 761 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:15] INFO (** New Band **) DX: CO8LY - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 774 Hz - Time: 0231Z - DXCC: 70 +[26-09-2024 09:32:15] INFO DX: SQ3F - Spotter: YO2MAX - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 1276 Hz - Time: 0231Z - DXCC: 269 +[26-09-2024 09:32:16] INFO (** New Band **) DX: MM0HVU - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1698 Hz - Time: 0231Z - DXCC: 279 +[26-09-2024 09:32:16] INFO (** New Band **) DX: DF5AB - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1627 Hz - Time: 0231Z - DXCC: 230 +[26-09-2024 09:32:17] INFO DX: JA1NPQ - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -19 dB 2071 Hz - Time: 0231Z - DXCC: 339 +[26-09-2024 09:32:17] INFO DX: DL8NBM - Spotter: DC8YZ - Freq: 10129.0 - Band: 30M - Mode: CW - Comment: 5 dB 20 WPM CQ - Time: 0231Z - DXCC: 230 +[26-09-2024 09:32:18] INFO DX: W8GNM - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1454 Hz - Time: 0231Z - DXCC: 291 +[26-09-2024 09:32:18] INFO (** Worked **) DX: PY7ZZ - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 2 dB 2454 Hz - Time: 0231Z - DXCC: 108 +[26-09-2024 09:32:18] INFO DX: PY7ZZ - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 2 dB 2454 Hz - Time: 0231Z - DXCC: 108 +[26-09-2024 09:32:19] INFO DX: RU9CK - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1818 Hz - Time: 0231Z - DXCC: 15 +[26-09-2024 09:32:19] INFO DX: F1LED - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 375 Hz - Time: 0231Z - DXCC: 227 +[26-09-2024 09:32:19] INFO DX: SV3AUW - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1273 Hz - Time: 0232Z - DXCC: 236 +[26-09-2024 09:32:20] INFO DX: WA4ZXV - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 2189 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:20] INFO DX: KO4ZXI - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 652 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:21] INFO DX: WD9FJL - Spotter: W3OA - Freq: 14022.3 - Band: 20M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:21] INFO DX: R2ASV - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 333 Hz - Time: 0232Z - DXCC: 54 +[26-09-2024 09:32:22] INFO DX: K3QB - Spotter: K9IMM - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 603 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:22] INFO (** New Band **) DX: R6FY - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 380 Hz - Time: 0232Z - DXCC: 54 +[26-09-2024 09:32:23] INFO DX: VE6AGD - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 225 Hz - Time: 0232Z - DXCC: 1 +[26-09-2024 09:32:23] INFO DX: OK1CF - Spotter: YO2MAX - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 4 dB 21 WPM CQ - Time: 0232Z - DXCC: 503 +[26-09-2024 09:32:23] INFO DX: EA3NW - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1749 Hz - Time: 0232Z - DXCC: 281 +[26-09-2024 09:32:24] INFO (** New Band **) DX: OE6OCG - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 478 Hz - Time: 0232Z - DXCC: 206 +[26-09-2024 09:32:24] INFO DX: W5APO - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1830 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:25] INFO DX: AG5PM - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2081 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:25] INFO DX: WB3AZH - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1011 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:26] INFO DX: NC7I - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1337 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:26] INFO DX: WD9FJL - Spotter: TI7W - Freq: 14022.3 - Band: 20M - Mode: CW - Comment: 18 dB 19 WPM CQ - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:27] INFO (** New Band **) DX: RA2FCF - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +11 dB 1571 Hz - Time: 0232Z - DXCC: 126 +[26-09-2024 09:32:27] INFO DX: YB9GAN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 2228 Hz - Time: 0232Z - DXCC: 327 +[26-09-2024 09:32:27] INFO DX: UA6WL - Spotter: SM7IUN - Freq: 7008.9 - Band: 40M - Mode: CW - Comment: 28 dB 24 WPM CQ - Time: 0232Z - DXCC: 54 +[26-09-2024 09:32:28] INFO DX: WB5CXJ - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1159 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:28] INFO DX: K4MAM - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2862 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:29] INFO DX: K1LVA - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 271 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:29] INFO DX: N7EZQ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 710 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:30] INFO DX: KI5FTY - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2560 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:30] INFO DX: K7KIB - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 890 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:30] INFO (** New Band **) DX: KD9SQK - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 1479 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:31] INFO (** Worked **) DX: YB1JCD - Spotter: 9M2CNC - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 7 dB 29 WPM CQ - Time: 0232Z - DXCC: 327 +[26-09-2024 09:32:31] INFO DX: YB1JCD - Spotter: 9M2CNC - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 7 dB 29 WPM CQ - Time: 0232Z - DXCC: 327 +[26-09-2024 09:32:31] INFO DX: K5NBL - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1464 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:32] INFO DX: RT4A - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1589 Hz - Time: 0232Z - DXCC: 54 +[26-09-2024 09:32:32] INFO (** New Band **) DX: UA6LLX - Spotter: DK3UA - Freq: 3512.0 - Band: 80M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0232Z - DXCC: 54 +[26-09-2024 09:32:33] INFO (** New Band **) DX: 9A2GA - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 5 dB 941 Hz - Time: 0232Z - DXCC: 497 +[26-09-2024 09:32:33] INFO (** New Band **) DX: PP1GS - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1215 Hz - Time: 0232Z - DXCC: 108 +[26-09-2024 09:32:34] INFO DX: WS7M - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 876 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:34] INFO DX: WA7TV - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1151 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:35] INFO DX: KA3IRT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 840 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:32:35] INFO (** New Band **) DX: CA3TSK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 2702 Hz - Time: 0232Z - DXCC: 112 +[26-09-2024 09:32:35] INFO DX: VE6CV - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -12 dB 1498 Hz - Time: 0232Z - DXCC: 1 +[26-09-2024 09:32:36] INFO DX: W0JMP - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -12 dB 1462 Hz - Time: 0232Z - DXCC: 291 +[26-09-2024 09:33:46] INFO config loaded. +[26-09-2024 09:33:46] INFO Callsign: XV9Q +[26-09-2024 09:33:46] INFO deleting existing database +[26-09-2024 09:33:46] INFO Opening SQLite database +[26-09-2024 09:33:46] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:33:46] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:33:46] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:33:46] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:33:46] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:33:47] INFO Found login prompt...sending callsign +[26-09-2024 09:33:49] INFO FT8 is on as defined in the config file +[26-09-2024 09:33:49] INFO Skimmer is on as defined in the config file +[26-09-2024 09:33:50] INFO DX: WA5ZQO - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 205 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:50] INFO DX: WB6WUW - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 2046 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:50] INFO DX: WW0E - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 2213 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:51] INFO (** New Band **) DX: EC3A - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 1266 Hz - Time: 0233Z - DXCC: 281 +[26-09-2024 09:33:51] INFO (** New Band **) DX: RA2FCF - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 1567 Hz - Time: 0233Z - DXCC: 126 +[26-09-2024 09:33:52] INFO (** New Band **) DX: W2RLW - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1488 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:52] INFO DX: KA8IIM - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1450 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:53] INFO (** New Band **) DX: CT2HEX - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1316 Hz - Time: 0233Z - DXCC: 272 +[26-09-2024 09:33:53] INFO DX: K0WWX - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2721 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:54] INFO DX: K5FXD - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1892 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:54] INFO (** New Mode **) DX: KT3S - Spotter: EA5UB - Freq: 14074.0 - Band: 20M - Mode: - Comment: 73 tks - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:54] INFO DX: LA2HFA - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1005 Hz - Time: 0233Z - DXCC: 266 +[26-09-2024 09:33:55] INFO DX: KA0BOJ - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1251 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:55] INFO DX: K3RH - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2117 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:56] INFO (** New Band **) DX: AD5CA - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 2207 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:56] INFO (** New Band **) DX: YO3GTP - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 1865 Hz - Time: 0233Z - DXCC: 275 +[26-09-2024 09:33:57] INFO (** New Band **) DX: UT8ER - Spotter: MM0ZBH - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 21 dB 17 WPM CQ - Time: 0233Z - DXCC: 288 +[26-09-2024 09:33:57] INFO DX: R1BFL - Spotter: MM0ZBH - Freq: 7041.0 - Band: 40M - Mode: CW - Comment: 18 dB 29 WPM CQ - Time: 0233Z - DXCC: 54 +[26-09-2024 09:33:58] INFO DX: AD0BK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +20 dB 2920 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:58] INFO DX: KB9DED - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 2288 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:58] INFO (** New DXCC **) DX: HI3JCC - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1382 Hz - Time: 0233Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:33:59] INFO DX: AG7O - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 1433 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:33:59] INFO (** New Band **) DX: DL2VEL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1794 Hz - Time: 0233Z - DXCC: 230 +[26-09-2024 09:34:00] INFO DX: R6FIU - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 865 Hz - Time: 0233Z - DXCC: 54 +[26-09-2024 09:34:00] INFO DX: EA5HM - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +14 dB 863 Hz - Time: 0233Z - DXCC: 281 +[26-09-2024 09:34:01] INFO (** New Band **) DX: YO4GIY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1559 Hz - Time: 0233Z - DXCC: 275 +[26-09-2024 09:34:01] INFO DX: N5HHS - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 819 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:01] INFO (** New Band **) DX: G7RHF - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 2597 Hz - Time: 0233Z - DXCC: 223 +[26-09-2024 09:34:02] INFO DX: KM6GUO - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1945 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:02] INFO DX: N4FMO - Spotter: K7CO - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 1471 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:03] INFO DX: KA1MXL - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2471 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:03] INFO (** New Band **) DX: LU1WFU - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 2292 Hz - Time: 0233Z - DXCC: 100 +[26-09-2024 09:34:04] INFO DX: AG8P - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1915 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:04] INFO DX: ZS6DN - Spotter: W3OA - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 11 dB 17 WPM NCDXF BCN - Time: 0233Z - DXCC: 462 +[26-09-2024 09:34:05] INFO DX: KI0AR - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1191 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:05] INFO DX: WD9FJL - Spotter: K9IMM - Freq: 14022.3 - Band: 20M - Mode: CW - Comment: 9 dB 19 WPM CQ - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:05] INFO DX: KT3S - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 878 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:06] INFO DX: K1BZ - Spotter: K9IMM - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1308 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:06] INFO (** New Band **) DX: G8KHF - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 550 Hz - Time: 0233Z - DXCC: 223 +[26-09-2024 09:34:07] INFO (** New DXCC **) DX: J88IH - Spotter: G4IRN - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 872 Hz - Time: 0233Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:34:07] INFO DX: DL3ADI - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 743 Hz - Time: 0233Z - DXCC: 230 +[26-09-2024 09:34:08] INFO (** New Mode **) DX: HP2NG - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1038 Hz - Time: 0233Z - DXCC: 88 +[26-09-2024 09:34:08] INFO (** New Band **) DX: CO6XX - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 964 Hz - Time: 0233Z - DXCC: 70 +[26-09-2024 09:34:09] INFO DX: NY3H - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +16 dB 1742 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:09] INFO DX: XE1QLW - Spotter: K6FOD - Freq: 14060.0 - Band: 20M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0233Z - DXCC: 50 +[26-09-2024 09:34:09] INFO (** New DXCC **) DX: HK6VXX - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1830 Hz - Time: 0233Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:34:10] INFO DX: EA3NW - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1752 Hz - Time: 0233Z - DXCC: 281 +[26-09-2024 09:34:10] INFO DX: KF6JXM - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1031 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:11] INFO DX: K5NBL - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1243 Hz - Time: 0233Z - DXCC: 291 +[26-09-2024 09:34:11] INFO DX: KH6RS - Spotter: W6YX - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 47 dB 20 WPM NCDXF BCN - Time: 0234Z - DXCC: 110 +[26-09-2024 09:34:12] INFO (** Worked **) DX: HZ1TT - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2319 Hz - Time: 0234Z - DXCC: 378 +[26-09-2024 09:34:12] INFO DX: HZ1TT - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2319 Hz - Time: 0234Z - DXCC: 378 +[26-09-2024 09:34:12] INFO (** Worked **) DX: D2UY - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 1 dB 257 Hz - Time: 0234Z - DXCC: 401 +[26-09-2024 09:34:12] INFO DX: D2UY - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 1 dB 257 Hz - Time: 0234Z - DXCC: 401 +[26-09-2024 09:34:13] INFO DX: KH6RS - Spotter: N6TV - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 34 dB 20 WPM NCDXF BCN - Time: 0234Z - DXCC: 110 +[26-09-2024 09:34:13] INFO (** New Band **) DX: CO7CRJ - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 1680 Hz - Time: 0234Z - DXCC: 70 +[26-09-2024 09:34:13] INFO DX: VA3BOO - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1211 Hz - Time: 0234Z - DXCC: 1 +[26-09-2024 09:34:14] INFO (** New Band **) DX: K4CAE - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 7 dB 1297 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:14] INFO (** New Band **) DX: 4X1UF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 268 Hz - Time: 0234Z - DXCC: 336 +[26-09-2024 09:34:15] INFO (** New Band **) DX: CT1BFP - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1400 Hz - Time: 0234Z - DXCC: 272 +[26-09-2024 09:34:15] INFO (** New Band **) DX: CT3MD - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 638 Hz - Time: 0234Z - DXCC: 256 +[26-09-2024 09:34:16] INFO (** New Band **) DX: HC5F - Spotter: K7CO - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 1845 Hz - Time: 0234Z - DXCC: 120 +[26-09-2024 09:34:16] INFO DX: JA8YAC - Spotter: K7CO - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -20 dB 1392 Hz - Time: 0234Z - DXCC: 339 +[26-09-2024 09:34:17] INFO DX: K3USC - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 1096 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:37] INFO config loaded. +[26-09-2024 09:34:37] INFO Callsign: XV9Q +[26-09-2024 09:34:37] INFO deleting existing database +[26-09-2024 09:34:37] INFO Opening SQLite database +[26-09-2024 09:34:37] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:34:37] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:34:37] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:34:37] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:34:37] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:34:37] INFO Found login prompt...sending callsign +[26-09-2024 09:34:39] INFO FT8 is on as defined in the config file +[26-09-2024 09:34:39] INFO Skimmer is on as defined in the config file +[26-09-2024 09:34:40] INFO (** New Mode **) DX: 4S7B - Spotter: 9M2CNC - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 12 dB 19 WPM NCDXF BCN - Time: 0234Z - DXCC: 315 +[26-09-2024 09:34:41] INFO (** Worked **) DX: BG7SAY - Spotter: VU2PTT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 2902 Hz - Time: 0234Z - DXCC: 318 +[26-09-2024 09:34:41] INFO DX: BG7SAY - Spotter: VU2PTT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 2902 Hz - Time: 0234Z - DXCC: 318 +[26-09-2024 09:34:41] INFO DX: W5BIB - Spotter: N9CO - Freq: 7034.0 - Band: 40M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:42] INFO DX: WB8SIG - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +34 dB 1668 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:42] INFO DX: KM4AF - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +10 dB 1511 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:42] INFO DX: N3TVV - Spotter: WA7LNW - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: +17 dB 154 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:43] INFO DX: K1LVA - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 200 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:43] INFO DX: KI5NQL - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 1883 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:44] INFO DX: K7ZGQ - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1181 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:44] INFO DX: K6GB - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 950 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:44] INFO DX: KM4SXE - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 358 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:45] INFO DX: ZS6ZA - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1378 Hz - Time: 0234Z - DXCC: 462 +[26-09-2024 09:34:45] INFO DX: AB5SE - Spotter: VE3EID - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 941 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:45] INFO DX: KM4EYS - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +13 dB 2737 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:46] INFO DX: KA8IIM - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1474 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:46] INFO DX: N0FUC - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 834 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:47] INFO DX: KD2BRV - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 652 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:47] INFO DX: JH1LPZ - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1838 Hz - Time: 0234Z - DXCC: 339 +[26-09-2024 09:34:47] INFO (** New Band **) DX: 5H1WX - Spotter: VE3EID - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 202 Hz - Time: 0234Z - DXCC: 470 +[26-09-2024 09:34:48] INFO DX: KI0AR - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1100 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:48] INFO DX: WR5E - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1903 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:48] INFO (** New Band **) DX: IW2DNI - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 2353 Hz - Time: 0234Z - DXCC: 248 +[26-09-2024 09:34:49] INFO (** New Band **) DX: DL8OH - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 830 Hz - Time: 0234Z - DXCC: 230 +[26-09-2024 09:34:49] INFO DX: RU3SN - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1532 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:34:50] INFO (** New Band **) DX: HC5F - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 2 dB 1709 Hz - Time: 0234Z - DXCC: 120 +[26-09-2024 09:34:50] INFO (** New Band **) DX: CE8EIO - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 2001 Hz - Time: 0234Z - DXCC: 112 +[26-09-2024 09:34:50] INFO DX: KT5OT - Spotter: WE9V - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -11 dB 1102 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:51] INFO (** Worked **) DX: UA0ABA - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2005 Hz - Time: 0234Z - DXCC: 15 +[26-09-2024 09:34:51] INFO DX: UA0ABA - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2005 Hz - Time: 0234Z - DXCC: 15 +[26-09-2024 09:34:51] INFO (** New Band **) DX: VE2OPR - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 2031 Hz - Time: 0234Z - DXCC: 1 +[26-09-2024 09:34:51] INFO (** New Band **) DX: KF9UG - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1171 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:52] INFO DX: 3D2USU - Spotter: N6TV - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -19 dB 459 Hz - Time: 0234Z - DXCC: 176 +[26-09-2024 09:34:52] INFO (** New Band **) DX: 4X1UF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 219 Hz - Time: 0234Z - DXCC: 336 +[26-09-2024 09:34:53] INFO DX: KE9ACJ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1480 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:53] INFO DX: RY7F - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 745 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:34:53] INFO DX: W7RPS - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2817 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:54] INFO DX: KB9DED - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 2259 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:54] INFO DX: R7KKO - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 2485 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:34:54] INFO DX: AD6WL - Spotter: K7CO - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 1458 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:55] INFO DX: KA1MXL - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 432 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:55] INFO (** New Band **) DX: OE6OCG - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 933 Hz - Time: 0234Z - DXCC: 206 +[26-09-2024 09:34:56] INFO DX: UA9YJM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1783 Hz - Time: 0234Z - DXCC: 15 +[26-09-2024 09:34:56] INFO DX: KC7DMS - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 1106 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:56] INFO DX: KJ7LSM - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1182 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:57] INFO DX: KB9MYP - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 1069 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:57] INFO DX: KG5BBF - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1403 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:34:57] INFO (** New Band **) DX: VE3LC - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +18 dB 1292 Hz - Time: 0234Z - DXCC: 1 +[26-09-2024 09:34:58] INFO (** New Band **) DX: YO4GIY - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1595 Hz - Time: 0234Z - DXCC: 275 +[26-09-2024 09:34:58] INFO (** New Band **) DX: DO5HOK - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1313 Hz - Time: 0234Z - DXCC: 230 +[26-09-2024 09:34:59] INFO (** New Band **) DX: YT3D - Spotter: OZ4ADX - Freq: 7010.8 - Band: 40M - Mode: CW - Comment: 27 dB 28 WPM CQ - Time: 0234Z - DXCC: 296 +[26-09-2024 09:34:59] INFO DX: UB9OEC - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1188 Hz - Time: 0234Z - DXCC: 15 +[26-09-2024 09:34:59] INFO (** Worked **) DX: HZ1TT - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2221 Hz - Time: 0234Z - DXCC: 378 +[26-09-2024 09:34:59] INFO DX: HZ1TT - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2221 Hz - Time: 0234Z - DXCC: 378 +[26-09-2024 09:35:00] INFO DX: KM6GUO - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1957 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:00] INFO (** New Band **) DX: KA9FOX - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 2475 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:00] INFO DX: UA6WL - Spotter: HB9DCO - Freq: 7009.0 - Band: 40M - Mode: CW - Comment: 19 dB 23 WPM CQ - Time: 0234Z - DXCC: 54 +[26-09-2024 09:35:01] INFO DX: WI7P - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2636 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:01] INFO (** New Band **) DX: IU8SDA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1474 Hz - Time: 0234Z - DXCC: 248 +[26-09-2024 09:35:02] INFO (** New Band **) DX: UV5EEO - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1012 Hz - Time: 0234Z - DXCC: 288 +[26-09-2024 09:35:02] INFO (** New Band **) DX: MM0HVU - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1771 Hz - Time: 0234Z - DXCC: 279 +[26-09-2024 09:35:02] INFO (** New Band **) DX: LZ5UY - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2545 Hz - Time: 0234Z - DXCC: 212 +[26-09-2024 09:35:03] INFO DX: VE2OPC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 1244 Hz - Time: 0234Z - DXCC: 1 +[26-09-2024 09:35:03] INFO DX: UB4FHA - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2158 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:35:03] INFO (** New Band **) DX: YT3PL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 2112 Hz - Time: 0234Z - DXCC: 296 +[26-09-2024 09:35:04] INFO (** New Band **) DX: EW4M - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2523 Hz - Time: 0234Z - DXCC: 27 +[26-09-2024 09:35:04] INFO DX: R2GDV - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 2100 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:35:04] INFO DX: AC3IK - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 1137 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:05] INFO (** New Band **) DX: R2DNP - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 1813 Hz - Time: 0234Z - DXCC: 54 +[26-09-2024 09:35:05] INFO DX: W9DRB - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1679 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:06] INFO (** New Band **) DX: XE2YWH - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1592 Hz - Time: 0234Z - DXCC: 50 +[26-09-2024 09:35:06] INFO DX: VR2B - Spotter: JI1HFJ - Freq: 24930.1 - Band: 12M - Mode: CW - Comment: 18 dB 22 WPM NCDXF BCN - Time: 0234Z - DXCC: 321 +[26-09-2024 09:35:06] INFO DX: EA1AA - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1514 Hz - Time: 0234Z - DXCC: 281 +[26-09-2024 09:35:07] INFO DX: NY3H - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1783 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:07] INFO (** New Band **) DX: DL2VEL - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1766 Hz - Time: 0234Z - DXCC: 230 +[26-09-2024 09:35:07] INFO (** New Band **) DX: EA9PB - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1196 Hz - Time: 0234Z - DXCC: 32 +[26-09-2024 09:35:08] INFO (** New Band **) DX: G8KHF - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 563 Hz - Time: 0234Z - DXCC: 223 +[26-09-2024 09:35:08] INFO (** New Band **) DX: XE1UYS - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 2857 Hz - Time: 0234Z - DXCC: 50 +[26-09-2024 09:35:08] INFO DX: W6NUC - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 512 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:09] INFO (** New Band **) DX: 2E0USH - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1104 Hz - Time: 0234Z - DXCC: 223 +[26-09-2024 09:35:09] INFO (** New Band **) DX: W2RLW - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: - 3 dB 983 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:10] INFO DX: W7IDM - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 6 dB 1345 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:10] INFO DX: KD0UUU - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 754 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:10] INFO DX: KB2RMS - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1304 Hz - Time: 0234Z - DXCC: 291 +[26-09-2024 09:35:11] INFO DX: VE6CV - Spotter: K9IMM - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 1659 Hz - Time: 0234Z - DXCC: 1 +[26-09-2024 09:35:11] INFO (** New DXCC **) DX: HI8RMQ - Spotter: SM7IUN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1658 Hz - Time: 0234Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:35:11] INFO (** New Band **) DX: AK0A - Spotter: N9CO - Freq: 3547.0 - Band: 80M - Mode: CW - Comment: 17 dB 23 WPM CQ - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:12] INFO (** New Band **) DX: AK0A - Spotter: WA7LNW - Freq: 3547.0 - Band: 80M - Mode: CW - Comment: 21 dB 23 WPM CQ - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:12] INFO DX: KC2NJ - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 0 dB 585 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:13] INFO DX: LU3HZK - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 2157 Hz - Time: 0235Z - DXCC: 100 +[26-09-2024 09:35:13] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 791 Hz - Time: 0235Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:35:13] INFO DX: OK1CF - Spotter: DL0PF - Freq: 1825.9 - Band: 17M - Mode: CW - Comment: 36 dB 22 WPM CQ - Time: 0235Z - DXCC: 503 +[26-09-2024 09:35:14] INFO DX: N4XYZ - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1627 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:14] INFO (** New Mode **) DX: HP2NG - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +11 dB 1260 Hz - Time: 0235Z - DXCC: 88 +[26-09-2024 09:35:15] INFO DX: N9DR - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 7 dB 1202 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:15] INFO (** New Band **) DX: G8IXM - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 874 Hz - Time: 0235Z - DXCC: 223 +[26-09-2024 09:35:15] INFO DX: AF0E - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2138 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:16] INFO DX: K8BCO - Spotter: WE9V - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 1405 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:16] INFO (** New Band **) DX: N2KA - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +27 dB 1418 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:16] INFO (** New Band **) DX: KT4ZX - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 1756 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:17] INFO DX: ZL2CA - Spotter: WE9V - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1410 Hz - Time: 0235Z - DXCC: 170 +[26-09-2024 09:35:17] INFO DX: W6WML - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1393 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:18] INFO DX: N4GBK - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1421 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:18] INFO (** New DXCC **) DX: HK6VXX - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1563 Hz - Time: 0235Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:35:19] INFO DX: LU7MCR - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1828 Hz - Time: 0235Z - DXCC: 100 +[26-09-2024 09:35:19] INFO (** New DXCC **) DX: HI3JCC - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1404 Hz - Time: 0235Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:35:19] INFO DX: K4RGN - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 861 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:20] INFO DX: N7NT - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 414 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:20] INFO DX: KF9UG - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -15 dB 1190 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:21] INFO (** New Band **) DX: UR4FY - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 773 Hz - Time: 0235Z - DXCC: 288 +[26-09-2024 09:35:21] INFO (** New Band **) DX: UA6LLX - Spotter: DK0TE - Freq: 3512.0 - Band: 80M - Mode: CW - Comment: 10 dB 23 WPM CQ - Time: 0235Z - DXCC: 54 +[26-09-2024 09:35:21] INFO (** New Mode **) DX: 6Y5PW - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2380 Hz - Time: 0235Z - DXCC: 82 +[26-09-2024 09:35:22] INFO (** New Band **) DX: OP5K - Spotter: IK4VET - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 15 dB 20 WPM CQ - Time: 0235Z - DXCC: 209 +[26-09-2024 09:35:22] INFO (** New Band **) DX: XE2YWB - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 2042 Hz - Time: 0235Z - DXCC: 50 +[26-09-2024 09:35:23] INFO DX: 4X6TU - Spotter: W1NT - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 19 dB 20 WPM NCDXF BCN - Time: 0235Z - DXCC: 997 +[26-09-2024 09:35:23] INFO DX: VK4ZD - Spotter: K7CO - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -14 dB 1801 Hz - Time: 0235Z - DXCC: 150 +[26-09-2024 09:35:24] INFO DX: KD9ZHF - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1896 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:24] INFO DX: KA0BOJ - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 8 dB 1291 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:24] INFO DX: RM9RZ - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1908 Hz - Time: 0235Z - DXCC: 15 +[26-09-2024 09:35:25] INFO DX: R2ASV - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 2768 Hz - Time: 0235Z - DXCC: 54 +[26-09-2024 09:35:25] INFO (** New Band **) DX: 4L4DX - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 2606 Hz - Time: 0235Z - DXCC: 75 +[26-09-2024 09:35:26] INFO (** New Band **) DX: K6WRJ - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -20 dB 605 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:26] INFO DX: WB2GDD - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1796 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:26] INFO DX: KB1EFS - Spotter: K9IMM - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1801 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:27] INFO DX: VK2WW - Spotter: NG7M - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 1 dB 337 Hz - Time: 0235Z - DXCC: 150 +[26-09-2024 09:35:27] INFO DX: LW1DYN - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 757 Hz - Time: 0235Z - DXCC: 100 +[26-09-2024 09:35:28] INFO DX: K4ZH - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 1423 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:28] INFO DX: W5LO - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 2242 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:29] INFO (** New Band **) DX: CO2AN - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 2247 Hz - Time: 0235Z - DXCC: 70 +[26-09-2024 09:35:29] INFO DX: K5AYO - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 1952 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:29] INFO (** New DXCC **) DX: J88IH - Spotter: VE3EID - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 856 Hz - Time: 0235Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:35:30] INFO (** New Band **) DX: FY5FY - Spotter: W8WWV - Freq: 7003.0 - Band: 40M - Mode: CW - Comment: 23 dB 25 WPM CQ - Time: 0235Z - DXCC: 63 +[26-09-2024 09:35:30] INFO DX: RA9CAD - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 2128 Hz - Time: 0235Z - DXCC: 15 +[26-09-2024 09:35:31] INFO DX: K7ZGQ - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1261 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:31] INFO DX: WD0ANB - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1581 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:32] INFO DX: N7MDW - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 9 dB 1358 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:32] INFO DX: K0LUZ - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 6 dB 1540 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:32] INFO DX: VK2YPZ - Spotter: VE7CC - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1927 Hz - Time: 0235Z - DXCC: 150 +[26-09-2024 09:35:33] INFO (** Worked **) DX: C21TS - Spotter: VE7CC - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 595 Hz - Time: 0235Z - DXCC: 157 +[26-09-2024 09:35:33] INFO DX: C21TS - Spotter: VE7CC - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 595 Hz - Time: 0235Z - DXCC: 157 +[26-09-2024 09:35:33] INFO DX: N6JF - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 6 dB 636 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:34] INFO DX: KT3S - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 892 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:34] INFO DX: WB2UBW - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 413 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:35:35] INFO DX: N1SO - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 1487 Hz - Time: 0235Z - DXCC: 291 +[26-09-2024 09:52:02] INFO config loaded. +[26-09-2024 09:52:02] INFO Callsign: XV9Q +[26-09-2024 09:52:02] INFO deleting existing database +[26-09-2024 09:52:02] INFO Opening SQLite database +[26-09-2024 09:52:02] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:52:02] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:52:02] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:52:02] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:52:03] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:52:03] INFO Found login prompt...sending callsign +[26-09-2024 09:52:05] INFO FT8 is on as defined in the config file +[26-09-2024 09:52:05] INFO Skimmer is on as defined in the config file +[26-09-2024 09:52:06] INFO DX: W5BIB - Spotter: WA7LNW - Freq: 14052.0 - Band: 20M - Mode: CW - Comment: 21 dB 23 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:07] INFO DX: VA2RB - Spotter: WA7LNW - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 27 dB 21 WPM CQ - Time: 0252Z - DXCC: 1 +[26-09-2024 09:52:07] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 896 Hz - Time: 0252Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:52:08] INFO DX: W6ZU - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1289 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:08] INFO DX: PY2KY - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -15 dB 1658 Hz - Time: 0252Z - DXCC: 108 +[26-09-2024 09:52:08] INFO DX: OK1CF - Spotter: DM5GG - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0252Z - DXCC: 503 +[26-09-2024 09:52:09] INFO DX: K7QA - Spotter: K7CO - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 1268 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:09] INFO DX: KO4ZYG - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 1866 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:23] INFO DX: K0BHB - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1839 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:24] INFO DX: KI5UKI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1417 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:24] INFO DX: W0OVX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1997 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:25] INFO DX: WA9FVP - Spotter: K7CO - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 542 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:25] INFO DX: WB0ATS - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 951 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:26] INFO (** New Band **) DX: XE2YWH - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 2769 Hz - Time: 0252Z - DXCC: 50 +[26-09-2024 09:52:26] INFO DX: W0JMP - Spotter: WE9V - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: +14 dB 1743 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:27] INFO (** New Band **) DX: DJ1AA - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1939 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:52:27] INFO DX: W7Y - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1639 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:28] INFO DX: KG9X - Spotter: W2MV - Freq: 7031.0 - Band: 40M - Mode: CW - Comment: 45 dB 29 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:28] INFO (** New Band **) DX: YO9HP - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 2152 Hz - Time: 0252Z - DXCC: 275 +[26-09-2024 09:52:28] INFO (** New Band **) DX: EC3A - Spotter: LZ4UX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -20 dB 1267 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:52:29] INFO (** New Band **) DX: MI0NWA - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 538 Hz - Time: 0252Z - DXCC: 265 +[26-09-2024 09:52:29] INFO DX: PA3AAV - Spotter: W1NT - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 19 dB 36 WPM CQ - Time: 0252Z - DXCC: 263 +[26-09-2024 09:52:30] INFO DX: IV3IZU - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 535 Hz - Time: 0252Z - DXCC: 248 +[26-09-2024 09:52:30] INFO DX: KO4VW - Spotter: W2NAF - Freq: 7035.5 - Band: 40M - Mode: CW - Comment: 39 dB 37 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:31] INFO (** Worked **) DX: UA4FEN - Spotter: YO2MAX - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 803 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:52:31] INFO DX: UA4FEN - Spotter: YO2MAX - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 803 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:52:31] INFO DX: OD5ZZ - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 1683 Hz - Time: 0252Z - DXCC: 354 +[26-09-2024 09:52:32] INFO (** New Band **) DX: K4RG - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1756 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:32] INFO (** New Band **) DX: OE6TNO - Spotter: YO2MAX - Freq: 3570.0 - Band: 80M - Mode: FT8 - Comment: +12 dB 4317 Hz - Time: 0252Z - DXCC: 206 +[26-09-2024 09:52:32] INFO (** Worked **) DX: HA7TM - Spotter: LB9KJ - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 2208 Hz - Time: 0252Z - DXCC: 239 +[26-09-2024 09:52:32] INFO DX: HA7TM - Spotter: LB9KJ - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 2208 Hz - Time: 0252Z - DXCC: 239 +[26-09-2024 09:52:33] INFO (** New Band **) DX: RA2FCF - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 1564 Hz - Time: 0252Z - DXCC: 126 +[26-09-2024 09:52:33] INFO DX: N7DX - Spotter: V51YJ - Freq: 14037.5 - Band: 20M - Mode: CW - Comment: 12 dB 40 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:34] INFO DX: KO0Z - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1647 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:34] INFO DX: K5NBL - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 903 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:35] INFO (** New Band **) DX: OH6FSO - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2588 Hz - Time: 0252Z - DXCC: 224 +[26-09-2024 09:52:35] INFO DX: KO4VW - Spotter: W3OA - Freq: 7035.5 - Band: 40M - Mode: CW - Comment: 29 dB 35 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:36] INFO (** New Band **) DX: YO2LDU - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1740 Hz - Time: 0252Z - DXCC: 275 +[26-09-2024 09:52:36] INFO DX: WB2AA - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 785 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:36] INFO (** New Band **) DX: IK4LZH - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 5 dB 554 Hz - Time: 0252Z - DXCC: 248 +[26-09-2024 09:52:50] INFO (** New Band **) DX: HB9CXZ - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +27 dB 2081 Hz - Time: 0252Z - DXCC: 287 +[26-09-2024 09:52:51] INFO DX: K5DB - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 1255 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:51] INFO DX: JE7MRX - Spotter: JI1HFJ - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 967 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:52:52] INFO (** Worked **) DX: BG5UEZ - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1511 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:52:52] INFO DX: BG5UEZ - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1511 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:52:52] INFO DX: RC0AT - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 4 dB 1445 Hz - Time: 0252Z - DXCC: 15 +[26-09-2024 09:52:53] INFO (** Worked **) DX: JA1UQA - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 2 dB 757 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:52:53] INFO DX: JA1UQA - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 2 dB 757 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:52:53] INFO DX: BG5CPM - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 7 dB 1303 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:52:54] INFO DX: DS2AUX - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +22 dB 1400 Hz - Time: 0252Z - DXCC: 137 +[26-09-2024 09:52:54] INFO DX: N6JBW - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 2052 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:55] INFO DX: JT1A - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1266 Hz - Time: 0252Z - DXCC: 363 +[26-09-2024 09:52:55] INFO DX: BG7EJL - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -22 dB 973 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:52:56] INFO DX: K6QX - Spotter: N7TUG - Freq: 14041.3 - Band: 20M - Mode: CW - Comment: 12 dB 14 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:56] INFO DX: VE3EQM - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 2689 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:52:57] INFO DX: NT4J - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 440 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:57] INFO DX: N6DD - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +18 dB 332 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:57] INFO DX: AI5DE - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 782 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:52:58] INFO DX: BG5TWU - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1396 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:52:58] INFO DX: OK1VAW - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 3044 Hz - Time: 0252Z - DXCC: 503 +[26-09-2024 09:52:59] INFO DX: RV9CW - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 2184 Hz - Time: 0252Z - DXCC: 15 +[26-09-2024 09:52:59] INFO DX: HA5JP - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 2381 Hz - Time: 0252Z - DXCC: 239 +[26-09-2024 09:53:00] INFO DX: K8AGB - Spotter: W1NT - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 1030 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:00] INFO DX: K7ZV - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 2277 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:01] INFO DX: K0KW - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1760 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:01] INFO (** New Band **) DX: VA7QI - Spotter: VE7CC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 3 dB 583 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:02] INFO DX: KO6DRE - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1107 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:02] INFO (** New Band **) DX: XE1UYS - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2910 Hz - Time: 0252Z - DXCC: 50 +[26-09-2024 09:53:02] INFO DX: WW0E - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2415 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:03] INFO DX: W5MOT - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2009 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:03] INFO DX: KJ7VRI - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +14 dB 1812 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:04] INFO DX: AI7WP - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2475 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:04] INFO DX: K1GJQ - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1755 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:05] INFO DX: KD5HUS - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 731 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:05] INFO DX: PS7CY - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1038 Hz - Time: 0252Z - DXCC: 108 +[26-09-2024 09:53:06] INFO DX: N8HRZ - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2135 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:06] INFO (** New Mode **) DX: 5H1WX - Spotter: IV3IZU - Freq: 10131.0 - Band: 30M - Mode: - Comment: tnx - Time: 0252Z - DXCC: 470 +[26-09-2024 09:53:07] INFO (** New Band **) DX: DC6MY - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 203 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:53:07] INFO DX: RX6ASO - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1245 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:07] INFO (** New Band **) DX: HB9HSJ - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1357 Hz - Time: 0252Z - DXCC: 287 +[26-09-2024 09:53:08] INFO (** New Band **) DX: KD9ZHF - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -11 dB 1321 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:08] INFO (** New Band **) DX: KA9MIC - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: - 7 dB 355 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:09] INFO DX: N6OKU - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 1239 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:09] INFO (** Worked **) DX: VK5COL - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 924 Hz - Time: 0252Z - DXCC: 150 +[26-09-2024 09:53:09] INFO DX: VK5COL - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 924 Hz - Time: 0252Z - DXCC: 150 +[26-09-2024 09:53:10] INFO DX: RW6ASB - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1174 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:10] INFO DX: R7LX - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1619 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:11] INFO DX: KE9ACJ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1462 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:11] INFO DX: K8DEV - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1018 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:11] INFO DX: N7NR - Spotter: K9IMM - Freq: 14031.5 - Band: 20M - Mode: CW - Comment: 31 dB 29 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:12] INFO DX: AH6KO - Spotter: K6FOD - Freq: 21032.7 - Band: 15M - Mode: CW - Comment: 31 dB 29 WPM CQ - Time: 0252Z - DXCC: 110 +[26-09-2024 09:53:12] INFO DX: K2L - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2726 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:13] INFO DX: KO6EDH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1688 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:13] INFO DX: SQ7JZF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 2452 Hz - Time: 0252Z - DXCC: 269 +[26-09-2024 09:53:14] INFO (** New Band **) DX: KD2YQS - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 2069 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:14] INFO (** New Band **) DX: UA6BGM - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 2482 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:15] INFO (** New Band **) DX: YO4GIY - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1649 Hz - Time: 0252Z - DXCC: 275 +[26-09-2024 09:53:15] INFO DX: N4QYO - Spotter: KA7OEI - Freq: 7065.0 - Band: 40M - Mode: CW - Comment: 26 dB 17 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:15] INFO DX: YB8CP - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 1411 Hz - Time: 0252Z - DXCC: 327 +[26-09-2024 09:53:16] INFO DX: YD1LCF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 2097 Hz - Time: 0252Z - DXCC: 327 +[26-09-2024 09:53:16] INFO DX: JA7LGE - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 2920 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:53:17] INFO (** Worked **) DX: BG6AWC - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 1501 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:17] INFO DX: BG6AWC - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 1501 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:17] INFO DX: BG5GLJ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 1315 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:18] INFO DX: UN2NC - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 2339 Hz - Time: 0252Z - DXCC: 130 +[26-09-2024 09:53:18] INFO (** Worked **) DX: BG5GLV - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 931 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:18] INFO DX: BG5GLV - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 931 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:19] INFO (** New Band **) DX: 5W1SA - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 1977 Hz - Time: 0252Z - DXCC: 190 +[26-09-2024 09:53:19] INFO DX: N0OII - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 518 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:20] INFO DX: AH6KO - Spotter: WA7LNW - Freq: 21032.8 - Band: 15M - Mode: CW - Comment: 49 dB 30 WPM CQ - Time: 0252Z - DXCC: 110 +[26-09-2024 09:53:20] INFO DX: N4NJJ - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 2113 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:20] INFO DX: KE9BGK - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1862 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:21] INFO DX: W7MD - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1648 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:21] INFO DX: W7EDB - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1631 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:22] INFO DX: KC5JMJ - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 830 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:22] INFO DX: ZL1CVD - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 1426 Hz - Time: 0252Z - DXCC: 170 +[26-09-2024 09:53:23] INFO DX: K6BRN - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +18 dB 1692 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:23] INFO (** New Band **) DX: VE2OPR - Spotter: VE3EID - Freq: 3563.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 883 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:24] INFO DX: BG7IDX - Spotter: WA7LNW - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 1560 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:53:24] INFO DX: KI4RHR - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 245 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:25] INFO (** New Band **) DX: W1IX - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 7 dB 227 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:25] INFO DX: VE2OPC - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 1094 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:25] INFO (** New Band **) DX: AD5CA - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 795 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:26] INFO (** New Band **) DX: AB5SE - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 1525 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:26] INFO (** New Band **) DX: KD0BQS - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 7 dB 2597 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:27] INFO (** New Band **) DX: CT3MD - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 1 dB 644 Hz - Time: 0252Z - DXCC: 256 +[26-09-2024 09:53:27] INFO (** New Band **) DX: N1KI - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 1466 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:28] INFO (** New Band **) DX: YO3GNF - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 2530 Hz - Time: 0252Z - DXCC: 275 +[26-09-2024 09:53:28] INFO (** New Band **) DX: WD0CUF - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 247 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:28] INFO (** New Band **) DX: F4HAB - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 432 Hz - Time: 0252Z - DXCC: 227 +[26-09-2024 09:53:29] INFO (** New Band **) DX: VE2OPR - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 4 dB 874 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:29] INFO (** New Band **) DX: 4JF1EU - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 2762 Hz - Time: 0252Z - DXCC: 18 +[26-09-2024 09:53:30] INFO DX: N6DLC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2404 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:30] INFO (** New Band **) DX: LZ5UY - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 2464 Hz - Time: 0252Z - DXCC: 212 +[26-09-2024 09:53:31] INFO DX: N1NRL - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2642 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:31] INFO (** New Band **) DX: G3WGC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1249 Hz - Time: 0252Z - DXCC: 223 +[26-09-2024 09:53:32] INFO (** New Band **) DX: IZ8VYU - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1877 Hz - Time: 0252Z - DXCC: 248 +[26-09-2024 09:53:32] INFO DX: W4IDX - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 674 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:32] INFO DX: R2ASV - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 258 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:33] INFO (** New Band **) DX: OK2ZDL - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 2521 Hz - Time: 0252Z - DXCC: 503 +[26-09-2024 09:53:33] INFO DX: KK7UNF - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 2020 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:34] INFO DX: ND0Y - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 5 dB 610 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:34] INFO (** Worked **) DX: 4X5MZ - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 3 dB 1027 Hz - Time: 0252Z - DXCC: 336 +[26-09-2024 09:53:34] INFO DX: 4X5MZ - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 3 dB 1027 Hz - Time: 0252Z - DXCC: 336 +[26-09-2024 09:53:35] INFO DX: VA3OKG - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1108 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:35] INFO (** New DXCC **) DX: J88BTI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1250 Hz - Time: 0252Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:53:36] INFO DX: EA5RD - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 2209 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:53:36] INFO (** New Band **) DX: HC1BI - Spotter: ZF1A - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1407 Hz - Time: 0252Z - DXCC: 120 +[26-09-2024 09:53:37] INFO DX: AD9DU - Spotter: WE9V - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 839 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:37] INFO (** New Band **) DX: F4IOE - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1850 Hz - Time: 0252Z - DXCC: 227 +[26-09-2024 09:53:37] INFO DX: SV3AUW - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1330 Hz - Time: 0252Z - DXCC: 236 +[26-09-2024 09:53:38] INFO (** New Band **) DX: EA1FCH - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 648 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:53:38] INFO (** New Band **) DX: DO5HOK - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +15 dB 1317 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:53:39] INFO (** New Band **) DX: IZ8TFI - Spotter: HG8A - Freq: 7011.3 - Band: 40M - Mode: CW - Comment: 6 dB 31 WPM CQ - Time: 0252Z - DXCC: 248 +[26-09-2024 09:53:39] INFO DX: UB4FHA - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 2079 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:40] INFO (** New Band **) DX: YL3APH - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 719 Hz - Time: 0252Z - DXCC: 145 +[26-09-2024 09:53:40] INFO (** New Band **) DX: DC8QT - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 2059 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:53:41] INFO (** Worked **) DX: WU6P - Spotter: W2NAF - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 29 dB 38 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:41] INFO DX: WU6P - Spotter: W2NAF - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 29 dB 38 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:41] INFO DX: R8KAN - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 2222 Hz - Time: 0252Z - DXCC: 15 +[26-09-2024 09:53:41] INFO (** New Mode **) DX: KP4MAQ - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1505 Hz - Time: 0252Z - DXCC: 202 +[26-09-2024 09:53:42] INFO (** New Band **) DX: DD5RW - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 1480 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:53:42] INFO (** New Band **) DX: EA1IOK - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 2660 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:53:43] INFO (** New Mode **) DX: JY4CI - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1674 Hz - Time: 0252Z - DXCC: 342 +[26-09-2024 09:53:43] INFO (** New Band **) DX: UT3UY - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 213 Hz - Time: 0252Z - DXCC: 288 +[26-09-2024 09:53:44] INFO (** New Band **) DX: UR4FY - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 655 Hz - Time: 0252Z - DXCC: 288 +[26-09-2024 09:53:44] INFO DX: UA9AX - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 882 Hz - Time: 0252Z - DXCC: 15 +[26-09-2024 09:53:45] INFO (** New Band **) DX: F4HAB - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 410 Hz - Time: 0252Z - DXCC: 227 +[26-09-2024 09:53:45] INFO (** New Band **) DX: F1PBZ - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 811 Hz - Time: 0252Z - DXCC: 227 +[26-09-2024 09:53:45] INFO (** New Band **) DX: DL5DQZ - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 9 dB 1912 Hz - Time: 0252Z - DXCC: 230 +[26-09-2024 09:53:46] INFO (** New Band **) DX: R6FY - Spotter: OH6BG - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 2262 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:46] INFO (** New Band **) DX: UI6L - Spotter: OH6BG - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 364 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:47] INFO DX: N3UL - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 422 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:47] INFO (** New Band **) DX: F4GTB - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1444 Hz - Time: 0252Z - DXCC: 227 +[26-09-2024 09:53:48] INFO DX: R8LBD - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1246 Hz - Time: 0252Z - DXCC: 15 +[26-09-2024 09:53:48] INFO DX: R1IAA - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 960 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:48] INFO (** New Band **) DX: OK4FX - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1361 Hz - Time: 0252Z - DXCC: 503 +[26-09-2024 09:53:49] INFO DX: KV3R - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 776 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:49] INFO DX: N7US - Spotter: VE6AO - Freq: 7030.4 - Band: 40M - Mode: CW - Comment: 5 dB 32 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:50] INFO DX: KF0LHO - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2112 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:50] INFO DX: W9CY - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +24 dB 1656 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:51] INFO DX: N5HD - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 2578 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:51] INFO (** New Mode **) DX: KP4GBF - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 1 dB 1453 Hz - Time: 0252Z - DXCC: 202 +[26-09-2024 09:53:52] INFO DX: WR5E - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 860 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:52] INFO DX: W4CNA - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 576 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:52] INFO DX: AB8MO - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 2946 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:53] INFO DX: KB1EFS - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1321 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:53] INFO DX: EA5HM - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 926 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:53:54] INFO (** New Band **) DX: CT1BOH - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1313 Hz - Time: 0252Z - DXCC: 272 +[26-09-2024 09:53:54] INFO DX: VE4OK - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 735 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:53:55] INFO (** New Band **) DX: W3KN - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 1600 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:55] INFO (** New Band **) DX: K8DP - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 3 dB 2563 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:55] INFO (** New Band **) DX: KF8BTC - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 2647 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:56] INFO DX: N7WFK - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1552 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:56] INFO DX: N6NKT - Spotter: WA7LNW - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -15 dB 2114 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:57] INFO (** Worked **) DX: VK4ZD - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 1481 Hz - Time: 0252Z - DXCC: 150 +[26-09-2024 09:53:57] INFO DX: VK4ZD - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 1481 Hz - Time: 0252Z - DXCC: 150 +[26-09-2024 09:53:57] INFO (** New Band **) DX: N9AAA - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +10 dB 1618 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:58] INFO DX: UA3ALE - Spotter: SM7IUN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 403 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:53:58] INFO (** New Band **) DX: CA3TSK - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 2696 Hz - Time: 0252Z - DXCC: 112 +[26-09-2024 09:53:59] INFO DX: K7FR - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1623 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:53:59] INFO DX: NA7KR - Spotter: WE9V - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1862 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:00] INFO DX: N2VPI - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1037 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:00] INFO DX: VE3FZG - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 1486 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:54:00] INFO DX: K3ATO - Spotter: NT6Q - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 24 dB 33 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:01] INFO DX: KA0BOJ - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +19 dB 1257 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:01] INFO DX: N6UNH - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 543 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:02] INFO DX: K3ATO - Spotter: AA0O - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 11 dB 32 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:02] INFO DX: 5P7F - Spotter: HA8TKS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1741 Hz - Time: 0252Z - DXCC: 221 +[26-09-2024 09:54:03] INFO DX: UW5SW - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1394 Hz - Time: 0252Z - DXCC: 288 +[26-09-2024 09:54:03] INFO (** New Band **) DX: KB9ZM - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 324 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:04] INFO DX: PY2ZA - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 308 Hz - Time: 0252Z - DXCC: 108 +[26-09-2024 09:54:04] INFO DX: N4XTT - Spotter: EA2CW - Freq: 7026.0 - Band: 40M - Mode: CW - Comment: 12 dB 33 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:05] INFO DX: RA4HG - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 2094 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:54:05] INFO DX: K3FH - Spotter: KP3CW - Freq: 14037.4 - Band: 20M - Mode: CW - Comment: 14 dB 24 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:05] INFO DX: K3FH - Spotter: TI7W - Freq: 14037.4 - Band: 20M - Mode: CW - Comment: 11 dB 24 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:06] INFO (** Worked **) DX: JA3LBF - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2370 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:54:06] INFO DX: JA3LBF - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2370 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:54:06] INFO (** New Band **) DX: OM5CM - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1692 Hz - Time: 0252Z - DXCC: 504 +[26-09-2024 09:54:07] INFO DX: N4XYZ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +19 dB 1610 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:07] INFO DX: K6KM - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 2385 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:08] INFO DX: WD4HMR - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2080 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:08] INFO DX: R2DNP - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1802 Hz - Time: 0252Z - DXCC: 54 +[26-09-2024 09:54:09] INFO DX: N3DAW - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1143 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:09] INFO DX: KI0AR - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1066 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:10] INFO DX: VR2B - Spotter: JI1HFJ - Freq: 18110.1 - Band: 17M - Mode: CW - Comment: 8 dB 22 WPM NCDXF BCN - Time: 0252Z - DXCC: 321 +[26-09-2024 09:54:10] INFO (** New DXCC **) DX: HI8RMQ - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1763 Hz - Time: 0252Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:54:10] INFO DX: KO4ZML - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1118 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:11] INFO DX: W3UA - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1907 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:11] INFO DX: K8BCO - Spotter: VE3EID - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 1402 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:12] INFO DX: VA6HEM - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 517 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:54:12] INFO (** New Band **) DX: KO9V - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 2285 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:13] INFO DX: N4CSV - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -21 dB 1820 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:13] INFO DX: KA7Y - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 975 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:14] INFO DX: JR3XUH - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 2654 Hz - Time: 0252Z - DXCC: 339 +[26-09-2024 09:54:14] INFO DX: BG2LXX - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 1308 Hz - Time: 0252Z - DXCC: 318 +[26-09-2024 09:54:15] INFO (** New Band **) DX: N3IQ - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +15 dB 1343 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:15] INFO DX: AA1BS - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1455 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:16] INFO (** New Band **) DX: US1VS - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 496 Hz - Time: 0252Z - DXCC: 288 +[26-09-2024 09:54:16] INFO DX: K6MKF - Spotter: NG7M - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -17 dB 890 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:17] INFO (** New Band **) DX: N7QWT - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +35 dB 851 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:17] INFO DX: KQ4IIQ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 518 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:17] INFO DX: K0WWX - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 2700 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:18] INFO DX: K2VL - Spotter: K9IMM - Freq: 7060.0 - Band: 40M - Mode: CW - Comment: 4 dB 18 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:18] INFO DX: KJ4CX - Spotter: K9IMM - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1317 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:19] INFO DX: AA4NP - Spotter: KA7OEI - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 20 dB 26 WPM CQ - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:19] INFO DX: IC8TEM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 2419 Hz - Time: 0252Z - DXCC: 248 +[26-09-2024 09:54:20] INFO DX: W4MJH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +27 dB 2509 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:20] INFO DX: KF9UG - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +25 dB 762 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:21] INFO DX: VE3XJX - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 1071 Hz - Time: 0252Z - DXCC: 1 +[26-09-2024 09:54:21] INFO (** New Band **) DX: KF4AH - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +17 dB 657 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:21] INFO (** New Band **) DX: YR1400VT - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1508 Hz - Time: 0252Z - DXCC: 275 +[26-09-2024 09:54:22] INFO (** New Band **) DX: OP5K - Spotter: DK9IP - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 16 dB 19 WPM CQ - Time: 0252Z - DXCC: 209 +[26-09-2024 09:54:22] INFO DX: KS4S - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1612 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:23] INFO DX: KB3MTU - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1622 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:23] INFO DX: KT4ZX - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -16 dB 1167 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:24] INFO DX: N8XS - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 6 dB 1154 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:24] INFO (** New Band **) DX: ZS6AF - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 924 Hz - Time: 0252Z - DXCC: 462 +[26-09-2024 09:54:25] INFO (** New Band **) DX: KF9UG - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +18 dB 1156 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:25] INFO (** Worked **) DX: HZ1TT - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 873 Hz - Time: 0252Z - DXCC: 378 +[26-09-2024 09:54:25] INFO DX: HZ1TT - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 873 Hz - Time: 0252Z - DXCC: 378 +[26-09-2024 09:54:26] INFO DX: K7TEJ - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1764 Hz - Time: 0252Z - DXCC: 291 +[26-09-2024 09:54:26] INFO DX: EA1AA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1665 Hz - Time: 0252Z - DXCC: 281 +[26-09-2024 09:54:26] INFO (** New Band **) DX: G8KHF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 578 Hz - Time: 0252Z - DXCC: 223 +[26-09-2024 09:54:27] INFO DX: 5Z4B - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 6 dB 23 WPM NCDXF BCN - Time: 0253Z - DXCC: 430 +[26-09-2024 09:54:27] INFO (** New Band **) DX: VE4GH - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 1110 Hz - Time: 0253Z - DXCC: 1 +[26-09-2024 09:54:28] INFO (** New Mode **) DX: IU8SDA - Spotter: IQ8DO - Freq: 14074.0 - Band: 20M - Mode: - Comment: 02:53 19th Palazzo Reale Ca - Time: 0253Z - DXCC: 248 +[26-09-2024 09:54:28] INFO DX: W5TM - Spotter: KD2OGR - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 25 dB 37 WPM CQ - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:29] INFO DX: K3WW - Spotter: WB6BEE - Freq: 14030.0 - Band: 20M - Mode: CW - Comment: 9 dB 32 WPM CQ - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:29] INFO DX: K0KV - Spotter: W3OA - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 451 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:30] INFO (** New Band **) DX: K0LLT - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -11 dB 472 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:30] INFO DX: LZ3GH - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1677 Hz - Time: 0253Z - DXCC: 212 +[26-09-2024 09:54:31] INFO DX: AL7DS - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1278 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:31] INFO DX: KD9ZQN - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 184 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:32] INFO (** Worked **) DX: LA8ENA - Spotter: G4IRN - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -15 dB 1906 Hz - Time: 0253Z - DXCC: 266 +[26-09-2024 09:54:32] INFO DX: LA8ENA - Spotter: G4IRN - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -15 dB 1906 Hz - Time: 0253Z - DXCC: 266 +[26-09-2024 09:54:32] INFO (** New Band **) DX: R3ZJ - Spotter: MM3NDH - Freq: 3520.5 - Band: 80M - Mode: CW - Comment: 13 dB 24 WPM CQ - Time: 0253Z - DXCC: 54 +[26-09-2024 09:54:33] INFO (** New Band **) DX: R3ZJ - Spotter: RK3TD - Freq: 3520.5 - Band: 80M - Mode: CW - Comment: 34 dB 24 WPM CQ - Time: 0253Z - DXCC: 54 +[26-09-2024 09:54:33] INFO DX: HS0ZOQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1644 Hz - Time: 0253Z - DXCC: 387 +[26-09-2024 09:54:33] INFO DX: VK2WW - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 1243 Hz - Time: 0253Z - DXCC: 150 +[26-09-2024 09:54:34] INFO DX: 4X6TU - Spotter: DM5GG - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 8 dB 21 WPM NCDXF BCN - Time: 0253Z - DXCC: 997 +[26-09-2024 09:54:34] INFO DX: W5TM - Spotter: N6TV - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 20 dB 38 WPM CQ - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:35] INFO DX: KN6MOS - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 2173 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:35] INFO (** New Band **) DX: CO7CRJ - Spotter: WA7LNW - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 1480 Hz - Time: 0253Z - DXCC: 70 +[26-09-2024 09:54:36] INFO (** Worked **) DX: EA5RW - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2981 Hz - Time: 0253Z - DXCC: 281 +[26-09-2024 09:54:36] INFO DX: EA5RW - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2981 Hz - Time: 0253Z - DXCC: 281 +[26-09-2024 09:54:36] INFO DX: N1UMJ - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 6 dB 1754 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:37] INFO DX: LW1DYN - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 756 Hz - Time: 0253Z - DXCC: 100 +[26-09-2024 09:54:37] INFO (** New Band **) DX: 4X1UF - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 133 Hz - Time: 0253Z - DXCC: 336 +[26-09-2024 09:54:38] INFO (** New Band **) DX: LY2EW - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1420 Hz - Time: 0253Z - DXCC: 146 +[26-09-2024 09:54:38] INFO (** New Band **) DX: W1HS - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 7 dB 793 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:38] INFO DX: LU2FWK - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 3 dB 855 Hz - Time: 0253Z - DXCC: 100 +[26-09-2024 09:54:39] INFO DX: VK5AIB - Spotter: VE7CC - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1700 Hz - Time: 0253Z - DXCC: 150 +[26-09-2024 09:54:39] INFO DX: NE1V - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1091 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:40] INFO (** New DXCC **) DX: HI8WJI - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +12 dB 450 Hz - Time: 0253Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:54:40] INFO (** Worked **) DX: PY2DPM - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 322 Hz - Time: 0253Z - DXCC: 108 +[26-09-2024 09:54:40] INFO DX: PY2DPM - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 322 Hz - Time: 0253Z - DXCC: 108 +[26-09-2024 09:54:41] INFO DX: N7NT - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 8 dB 2039 Hz - Time: 0253Z - DXCC: 291 +[26-09-2024 09:54:41] INFO DX: 3D2USU - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 3 dB 513 Hz - Time: 0253Z - DXCC: 176 +[26-09-2024 09:54:42] INFO DX: BA7BK - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: +12 dB 699 Hz - Time: 0253Z - DXCC: 318 +[26-09-2024 09:54:42] INFO DX: BI1GK - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 6 dB 1552 Hz - Time: 0253Z - DXCC: 318 +[26-09-2024 09:54:43] INFO (** New Band **) DX: JR1UOX - Spotter: JI1HFJ - Freq: 50313.0 - Band: N/A - Mode: FT8 - Comment: +10 dB 2991 Hz - Time: 0253Z - DXCC: 339 +[26-09-2024 09:54:49] INFO config loaded. +[26-09-2024 09:54:49] INFO Callsign: XV9Q +[26-09-2024 09:54:49] INFO deleting existing database +[26-09-2024 09:54:49] INFO Opening SQLite database +[26-09-2024 09:54:49] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:54:49] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:54:49] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:54:49] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:54:49] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:54:50] INFO Found login prompt...sending callsign +[26-09-2024 09:54:52] INFO FT8 is on as defined in the config file +[26-09-2024 09:54:52] INFO Skimmer is on as defined in the config file +[26-09-2024 09:54:53] INFO (** New Band **) DX: CO8LY - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 945 Hz - Time: 0254Z - DXCC: 70 +[26-09-2024 09:54:53] INFO DX: AA1BS - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1090 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:54] INFO (** New Mode **) DX: WP4SIG - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1669 Hz - Time: 0254Z - DXCC: 202 +[26-09-2024 09:54:54] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 939 Hz - Time: 0254Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:54:54] INFO DX: NJ6Q - Spotter: K7CO - Freq: 7038.5 - Band: 40M - Mode: CW - Comment: 22 dB 26 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:55] INFO DX: N7DX - Spotter: K9LC - Freq: 14033.4 - Band: 20M - Mode: CW - Comment: 37 dB 38 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:55] INFO (** New Band **) DX: N9MWB - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 1990 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:55] INFO (** New Band **) DX: K2CAF - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 685 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:56] INFO (** New Band **) DX: W6CKC - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 785 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:56] INFO DX: UA9AX - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 928 Hz - Time: 0254Z - DXCC: 15 +[26-09-2024 09:54:57] INFO (** New Band **) DX: OK2ZDL - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2534 Hz - Time: 0254Z - DXCC: 503 +[26-09-2024 09:54:57] INFO (** New Band **) DX: IZ8VYU - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1890 Hz - Time: 0254Z - DXCC: 248 +[26-09-2024 09:54:57] INFO DX: K3ATO - Spotter: 3V8SS - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 15 dB 31 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:58] INFO DX: VE3NNT - Spotter: AA0O - Freq: 7031.5 - Band: 40M - Mode: CW - Comment: 24 dB 38 WPM CQ - Time: 0254Z - DXCC: 1 +[26-09-2024 09:54:58] INFO DX: W8FJ - Spotter: WA7LNW - Freq: 14027.1 - Band: 20M - Mode: CW - Comment: 60 dB 28 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:58] INFO DX: N7US - Spotter: OE6TZE - Freq: 7030.4 - Band: 40M - Mode: CW - Comment: 15 dB 33 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:59] INFO DX: N7NR - Spotter: EA5RQ - Freq: 14031.5 - Band: 20M - Mode: CW - Comment: 12 dB 28 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:54:59] INFO DX: N2DSW - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -11 dB 1024 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:00] INFO (** New Band **) DX: G7RHF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2663 Hz - Time: 0254Z - DXCC: 223 +[26-09-2024 09:55:00] INFO (** New Band **) DX: IW3SOI - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 929 Hz - Time: 0254Z - DXCC: 248 +[26-09-2024 09:55:00] INFO (** New Band **) DX: TA2BZ - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1486 Hz - Time: 0254Z - DXCC: 390 +[26-09-2024 09:55:01] INFO DX: VA2QA - Spotter: W1NT - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: +15 dB 584 Hz - Time: 0254Z - DXCC: 1 +[26-09-2024 09:55:01] INFO (** New Mode **) DX: HP2NG - Spotter: W1NT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 9 dB 1127 Hz - Time: 0254Z - DXCC: 88 +[26-09-2024 09:55:02] INFO DX: W3YNI - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1256 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:02] INFO DX: W5TM - Spotter: W1NT - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 39 dB 38 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:02] INFO DX: AA8KY - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 1300 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:03] INFO DX: KK7CAI - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1016 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:03] INFO (** New Band **) DX: XE1UYS - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2863 Hz - Time: 0254Z - DXCC: 50 +[26-09-2024 09:55:04] INFO DX: N2NT - Spotter: KH6LC - Freq: 14029.1 - Band: 20M - Mode: CW - Comment: 23 dB 36 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:04] INFO (** New Band **) DX: 4JF1EU - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 2787 Hz - Time: 0254Z - DXCC: 18 +[26-09-2024 09:55:05] INFO (** New Band **) DX: YT3D - Spotter: EA1RX - Freq: 7010.7 - Band: 40M - Mode: CW - Comment: 22 dB 27 WPM CQ - Time: 0254Z - DXCC: 296 +[26-09-2024 09:55:05] INFO DX: WB4JWD - Spotter: W3OA - Freq: 7053.0 - Band: 40M - Mode: CW - Comment: 26 dB 17 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:05] INFO DX: WA3MH - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1437 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:06] INFO (** New Band **) DX: OP5K - Spotter: RK3TD - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 31 dB 22 WPM CQ - Time: 0254Z - DXCC: 209 +[26-09-2024 09:55:06] INFO DX: N4BP - Spotter: AC0C - Freq: 14028.2 - Band: 20M - Mode: CW - Comment: 55 dB 30 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:07] INFO DX: WB4JWD - Spotter: AC0C - Freq: 7053.0 - Band: 40M - Mode: CW - Comment: 30 dB 17 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:07] INFO DX: N2NT - Spotter: N7TUG - Freq: 14029.3 - Band: 20M - Mode: CW - Comment: 16 dB 37 WPM CQ - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:07] INFO DX: KZ5A - Spotter: K9IMM - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 777 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:08] INFO (** New Band **) DX: KO9V - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 2276 Hz - Time: 0254Z - DXCC: 291 +[26-09-2024 09:55:08] INFO DX: DL3MIB - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 769 Hz - Time: 0254Z - DXCC: 230 +[26-09-2024 09:55:09] INFO DX: K0KX - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 505 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:09] INFO DX: VA6HEM - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 526 Hz - Time: 0255Z - DXCC: 1 +[26-09-2024 09:55:10] INFO DX: KE8PCH - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1911 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:10] INFO DX: KD9ZHF - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 5 dB 1845 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:10] INFO DX: AD8HD - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 601 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:11] INFO DX: JO1VRV - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1214 Hz - Time: 0255Z - DXCC: 339 +[26-09-2024 09:55:11] INFO DX: KA3IRT - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2103 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:12] INFO (** New Band **) DX: 2E0USH - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 1114 Hz - Time: 0255Z - DXCC: 223 +[26-09-2024 09:55:12] INFO DX: AD0K - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -22 dB 1891 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:13] INFO DX: NA6JD - Spotter: K9LC - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 886 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:13] INFO DX: N7NT - Spotter: WE9V - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +24 dB 1974 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:13] INFO DX: WA2HIP - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 2241 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:14] INFO (** New Band **) DX: LZ1ON - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 2381 Hz - Time: 0255Z - DXCC: 212 +[26-09-2024 09:55:14] INFO DX: DJ0MAB - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1863 Hz - Time: 0255Z - DXCC: 230 +[26-09-2024 09:55:15] INFO DX: PY2ZA - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 555 Hz - Time: 0255Z - DXCC: 108 +[26-09-2024 09:55:15] INFO (** New Band **) DX: UT4LK - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 1 dB 2609 Hz - Time: 0255Z - DXCC: 288 +[26-09-2024 09:55:15] INFO (** New Band **) DX: CT3MD - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +14 dB 650 Hz - Time: 0255Z - DXCC: 256 +[26-09-2024 09:55:16] INFO (** New Band **) DX: VE3NJC - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 2128 Hz - Time: 0255Z - DXCC: 1 +[26-09-2024 09:55:16] INFO (** New DXCC **) DX: HI3JCC - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 884 Hz - Time: 0255Z - Command: 0, FlexSpot: 0 +[26-09-2024 09:55:17] INFO DX: WB6WUW - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +12 dB 2125 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:17] INFO DX: N6JF - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1006 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:18] INFO DX: EA1IOK - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2579 Hz - Time: 0255Z - DXCC: 281 +[26-09-2024 09:55:18] INFO DX: WS1N - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2032 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:18] INFO DX: SV2CUI - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 320 Hz - Time: 0255Z - DXCC: 236 +[26-09-2024 09:55:19] INFO DX: K2AN - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +21 dB 1058 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:19] INFO DX: K6SKI - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2239 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:20] INFO DX: NS0Q - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2249 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:20] INFO (** Worked **) DX: BD4RHV - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 2614 Hz - Time: 0255Z - DXCC: 318 +[26-09-2024 09:55:20] INFO DX: BD4RHV - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 2614 Hz - Time: 0255Z - DXCC: 318 +[26-09-2024 09:55:20] INFO (** New Band **) DX: YO9HP - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +10 dB 2151 Hz - Time: 0255Z - DXCC: 275 +[26-09-2024 09:55:21] INFO DX: K3WJV - Spotter: ZL4YL - Freq: 14034.8 - Band: 20M - Mode: CW - Comment: 19 dB 33 WPM CQ - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:21] INFO DX: KS4S - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1565 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:22] INFO (** New Band **) DX: F4IOE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1895 Hz - Time: 0255Z - DXCC: 227 +[26-09-2024 09:55:22] INFO (** New Band **) DX: MM0HVU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 1678 Hz - Time: 0255Z - DXCC: 279 +[26-09-2024 09:55:22] INFO (** New Band **) DX: HA1BF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 818 Hz - Time: 0255Z - DXCC: 239 +[26-09-2024 09:55:23] INFO DX: W8FSM - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +12 dB 1768 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:23] INFO DX: RA6FC - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 956 Hz - Time: 0255Z - DXCC: 54 +[26-09-2024 09:55:23] INFO (** New Band **) DX: PP1GS - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1207 Hz - Time: 0255Z - DXCC: 108 +[26-09-2024 09:55:24] INFO DX: RX6FN - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1940 Hz - Time: 0255Z - DXCC: 54 +[26-09-2024 09:55:24] INFO (** New Band **) DX: IK4LZH - Spotter: LZ4UX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 550 Hz - Time: 0255Z - DXCC: 248 +[26-09-2024 09:55:25] INFO DX: N2YO - Spotter: W6YX - Freq: 14031.0 - Band: 20M - Mode: CW - Comment: 34 dB 36 WPM CQ - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:25] INFO (** Worked **) DX: D2UY - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 3 dB 257 Hz - Time: 0255Z - DXCC: 401 +[26-09-2024 09:55:25] INFO DX: D2UY - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 3 dB 257 Hz - Time: 0255Z - DXCC: 401 +[26-09-2024 09:55:25] INFO (** New Band **) DX: KB9ZM - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 349 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:26] INFO (** New Band **) DX: K0WAV - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 801 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:26] INFO DX: KA9FOX - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2331 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:27] INFO DX: K5RKS - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1182 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:27] INFO DX: K4ZH - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1534 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:27] INFO DX: N2YO - Spotter: N6TV - Freq: 14031.0 - Band: 20M - Mode: CW - Comment: 24 dB 36 WPM CQ - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:28] INFO DX: N4GBK - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1412 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:28] INFO DX: UB4FHA - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 2085 Hz - Time: 0255Z - DXCC: 54 +[26-09-2024 09:55:29] INFO (** New Mode **) DX: KP4IA - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1173 Hz - Time: 0255Z - DXCC: 202 +[26-09-2024 09:55:29] INFO (** New Band **) DX: K6WRJ - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 9 dB 1085 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:29] INFO DX: IK8TMF - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1955 Hz - Time: 0255Z - DXCC: 248 +[26-09-2024 09:55:30] INFO (** New Band **) DX: CE8EIO - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 2034 Hz - Time: 0255Z - DXCC: 112 +[26-09-2024 09:55:30] INFO DX: PD5DLB - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 998 Hz - Time: 0255Z - DXCC: 263 +[26-09-2024 09:55:31] INFO DX: K6BRN - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -10 dB 1659 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:55:31] INFO DX: N0OII - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 567 Hz - Time: 0255Z - DXCC: 291 +[26-09-2024 09:58:36] INFO config loaded. +[26-09-2024 09:58:36] INFO Callsign: XV9Q +[26-09-2024 09:58:36] INFO deleting existing database +[26-09-2024 09:58:36] INFO Opening SQLite database +[26-09-2024 09:58:36] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:58:36] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:58:36] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:58:36] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4849 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4850 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4851 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4852 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4853 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4854 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4855 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4856 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4857 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4858 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4859 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4860 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4861 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4862 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4863 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4864 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4865 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4866 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4867 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4868 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4869 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4870 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4871 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4872 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4873 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4874 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4875 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4876 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4877 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4878 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4879 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4880 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4881 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4882 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4883 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4884 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4885 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4886 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4887 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4888 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4889 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4890 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4891 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4892 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4893 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4894 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4895 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4896 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4897 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4898 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4899 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4900 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4901 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4902 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4903 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4904 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4905 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4906 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4907 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4908 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4909 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4910 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4911 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4912 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4913 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4914 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4915 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4916 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4917 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4918 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4919 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4920 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4921 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4922 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4923 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4924 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4925 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4926 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4927 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4928 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4929 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4930 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4931 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4932 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4933 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4934 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4935 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4936 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4937 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4938 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4939 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4940 deleted from database +[26-09-2024 09:58:36] INFO Spot: DX: - Spotter: - Freq: - Band: - FlexID: 4941 deleted from database +[26-09-2024 09:58:37] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:58:37] INFO Found login prompt...sending callsign +[26-09-2024 09:58:39] INFO FT8 is on as defined in the config file +[26-09-2024 09:58:39] INFO Skimmer is on as defined in the config file +[26-09-2024 09:58:41] INFO DX: SV2KD - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1624 Hz - Time: 0258Z - DXCC: 236 +[26-09-2024 09:58:42] INFO DX: K1VUT - Spotter: ZF1A - Freq: 7028.0 - Band: 40M - Mode: CW - Comment: 21 dB 32 WPM CQ - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:42] INFO DX: PY1QQ - Spotter: RU9CZD - Freq: 14024.9 - Band: 20M - Mode: CW - Comment: 20 dB 24 WPM CQ - Time: 0258Z - DXCC: 108 +[26-09-2024 09:58:43] INFO DX: W6AYC - Spotter: KD2OGR - Freq: 14036.8 - Band: 20M - Mode: CW - Comment: 26 dB 30 WPM CQ - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:43] INFO DX: KO4VW - Spotter: W4KAZ - Freq: 7033.7 - Band: 40M - Mode: CW - Comment: 38 dB 32 WPM CQ - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:44] INFO DX: N2WPT - Spotter: K9LC - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1001 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:44] INFO DX: XE2GRM - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1329 Hz - Time: 0258Z - DXCC: 50 +[26-09-2024 09:58:44] INFO DX: W7SCD - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 2257 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:45] INFO (** New Mode **) DX: KP4GBF - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1475 Hz - Time: 0258Z - DXCC: 202 +[26-09-2024 09:58:45] INFO DX: KE4PWE - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +11 dB 769 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:46] INFO (** New Band **) DX: R3ZJ - Spotter: KM3T - Freq: 3520.5 - Band: 80M - Mode: CW - Comment: 10 dB 25 WPM CQ - Time: 0258Z - DXCC: 54 +[26-09-2024 09:58:46] INFO DX: K0LLT - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 1863 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:47] INFO DX: AG5PM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +11 dB 2164 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:47] INFO DX: KD0XD - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2174 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:47] INFO DX: R6WA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 2012 Hz - Time: 0258Z - DXCC: 54 +[26-09-2024 09:58:48] INFO DX: ES8GP - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1351 Hz - Time: 0258Z - DXCC: 52 +[26-09-2024 09:58:48] INFO DX: OD5ZZ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1766 Hz - Time: 0258Z - DXCC: 354 +[26-09-2024 09:58:49] INFO DX: AG6QV - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 875 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:49] INFO DX: UN7CL - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1206 Hz - Time: 0258Z - DXCC: 130 +[26-09-2024 09:58:50] INFO (** New Band **) DX: HB9ALO - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 747 Hz - Time: 0258Z - DXCC: 287 +[26-09-2024 09:58:50] INFO DX: KR2Q - Spotter: DM5GG - Freq: 7034.2 - Band: 40M - Mode: CW - Comment: 11 dB 32 WPM CQ - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:51] INFO (** New Band **) DX: K3ZK - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -20 dB 1935 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:51] INFO (** New Band **) DX: VE4GH - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 894 Hz - Time: 0258Z - DXCC: 1 +[26-09-2024 09:58:52] INFO DX: WB2GDD - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1579 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:52] INFO DX: AE0XJ - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1504 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:52] INFO (** New Band **) DX: NL7D - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 7 dB 1039 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:53] INFO (** New Band **) DX: K6LSU - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 1808 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:53] INFO (** New Band **) DX: K0LLT - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 992 Hz - Time: 0258Z - DXCC: 291 +[26-09-2024 09:58:54] INFO DX: K8BB - Spotter: WB6BEE - Freq: 7034.8 - Band: 40M - Mode: CW - Comment: 36 dB 32 WPM CQ - Time: 0258Z - DXCC: 291 +[26-09-2024 09:59:35] INFO config loaded. +[26-09-2024 09:59:35] INFO Callsign: XV9Q +[26-09-2024 09:59:35] INFO deleting existing database +[26-09-2024 09:59:35] INFO Opening SQLite database +[26-09-2024 09:59:35] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 09:59:35] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 09:59:35] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 09:59:35] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 09:59:39] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 09:59:39] INFO Found login prompt...sending callsign +[26-09-2024 09:59:41] INFO FT8 is on as defined in the config file +[26-09-2024 09:59:41] INFO Skimmer is on as defined in the config file +[26-09-2024 09:59:42] INFO DX: K3WW - Spotter: NT6Q - Freq: 14030.1 - Band: 20M - Mode: CW - Comment: 38 dB 26 WPM CQ - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:42] INFO DX: UA4CPM - Spotter: G0KTN - Freq: 7016.5 - Band: 40M - Mode: CW - Comment: 26 dB 26 WPM CQ - Time: 0259Z - DXCC: 54 +[26-09-2024 09:59:43] INFO (** New Band **) DX: VA7QI - Spotter: K9LC - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1370 Hz - Time: 0259Z - DXCC: 1 +[26-09-2024 09:59:43] INFO DX: W5BIB - Spotter: K9LC - Freq: 7044.0 - Band: 40M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:43] INFO DX: KE4DOZ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 288 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:44] INFO (** New Band **) DX: K4RG - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 1741 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:44] INFO DX: KR2Q - Spotter: DL0PF - Freq: 7034.2 - Band: 40M - Mode: CW - Comment: 8 dB 34 WPM CQ - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:45] INFO DX: WW5MD - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1226 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:45] INFO (** New Band **) DX: MI0NWA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 565 Hz - Time: 0259Z - DXCC: 265 +[26-09-2024 09:59:45] INFO DX: N9UNX - Spotter: KM3T - Freq: 7040.5 - Band: 40M - Mode: CW - Comment: 31 dB 34 WPM CQ - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:46] INFO DX: WB0ATS - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 928 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:46] INFO DX: RA3QTT - Spotter: G4IRN - Freq: 1830.0 - Band: 17M - Mode: CW - Comment: 11 dB 21 WPM CQ - Time: 0259Z - DXCC: 54 +[26-09-2024 09:59:47] INFO DX: VE3BZ - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 1959 Hz - Time: 0259Z - DXCC: 1 +[26-09-2024 09:59:47] INFO (** New Band **) DX: R2BDR - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 2436 Hz - Time: 0259Z - DXCC: 54 +[26-09-2024 09:59:47] INFO (** New Band **) DX: OM5CM - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +11 dB 1700 Hz - Time: 0259Z - DXCC: 504 +[26-09-2024 09:59:48] INFO DX: KD4CVB - Spotter: N6TV - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1704 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:48] INFO DX: KD5QHV - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 385 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:49] INFO DX: UT2AU - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 447 Hz - Time: 0259Z - DXCC: 288 +[26-09-2024 09:59:49] INFO DX: EA6BF - Spotter: W1NT - Freq: 14028.4 - Band: 20M - Mode: CW - Comment: 11 dB 35 WPM CQ - Time: 0259Z - DXCC: 21 +[26-09-2024 09:59:50] INFO DX: K4IA - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1358 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:50] INFO DX: KN6LCM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1522 Hz - Time: 0259Z - DXCC: 291 +[26-09-2024 09:59:51] INFO (** New Band **) DX: F5JQF - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2927 Hz - Time: 0259Z - DXCC: 227 +[26-09-2024 09:59:51] INFO DX: PA4G - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1728 Hz - Time: 0259Z - DXCC: 263 +[26-09-2024 10:00:56] INFO config loaded. +[26-09-2024 10:00:56] INFO Callsign: XV9Q +[26-09-2024 10:00:56] INFO deleting existing database +[26-09-2024 10:00:56] INFO Opening SQLite database +[26-09-2024 10:00:56] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:00:56] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:00:56] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:00:56] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:00:56] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:00:57] INFO Found login prompt...sending callsign +[26-09-2024 10:00:59] INFO FT8 is on as defined in the config file +[26-09-2024 10:00:59] INFO Skimmer is on as defined in the config file +[26-09-2024 10:01:00] INFO DX: KH7X - Spotter: VE6JY - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 35 dB 37 WPM CQ - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:00] INFO DX: NA8V - Spotter: DK9IP - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 16 dB 35 WPM CQ - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:00] INFO (** New Band **) DX: WE7G - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 1330 Hz - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:01] INFO (** New Band **) DX: AA1BS - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 1894 Hz - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:01] INFO DX: ZL1BRL - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 1173 Hz - Time: 0300Z - DXCC: 170 +[26-09-2024 10:01:02] INFO DX: AB5SE - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1345 Hz - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:02] INFO (** New Band **) DX: CA2VJM - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1484 Hz - Time: 0300Z - DXCC: 112 +[26-09-2024 10:01:02] INFO (** New Band **) DX: G7RHF - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 2567 Hz - Time: 0300Z - DXCC: 223 +[26-09-2024 10:01:03] INFO DX: KF0PMS - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1814 Hz - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:03] INFO DX: K3WW - Spotter: N7TUG - Freq: 14030.3 - Band: 20M - Mode: CW - Comment: 16 dB 37 WPM CQ - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:03] INFO (** New Band **) DX: YR1400VT - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 1519 Hz - Time: 0300Z - DXCC: 275 +[26-09-2024 10:01:04] INFO DX: UA9FGJ - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1034 Hz - Time: 0300Z - DXCC: 54 +[26-09-2024 10:01:04] INFO DX: K3MM - Spotter: N7TUG - Freq: 7027.7 - Band: 40M - Mode: CW - Comment: 14 dB 40 WPM CQ - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:05] INFO DX: N2NT - Spotter: W1NT - Freq: 14029.1 - Band: 20M - Mode: CW - Comment: 17 dB 37 WPM CQ - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:05] INFO DX: NW1L - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1381 Hz - Time: 0300Z - DXCC: 291 +[26-09-2024 10:01:05] INFO DX: K5CM - Spotter: AA0O - Freq: 14028.6 - Band: 20M - Mode: CW - Comment: 4 dB 37 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:06] INFO (** Worked **) DX: N2IC - Spotter: VK2GEL - Freq: 14032.9 - Band: 20M - Mode: CW - Comment: 10 dB 36 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:06] INFO DX: N2IC - Spotter: VK2GEL - Freq: 14032.9 - Band: 20M - Mode: CW - Comment: 10 dB 36 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:06] INFO DX: KF6NCX - Spotter: KO7SS - Freq: 14033.8 - Band: 20M - Mode: CW - Comment: 25 dB 22 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:07] INFO DX: VE3YT - Spotter: KP3CW - Freq: 7026.5 - Band: 40M - Mode: CW - Comment: 15 dB 37 WPM CQ - Time: 0301Z - DXCC: 1 +[26-09-2024 10:01:07] INFO (** New Band **) DX: UT8ER - Spotter: KP3CW - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 22 dB 17 WPM CQ - Time: 0301Z - DXCC: 288 +[26-09-2024 10:01:07] INFO (** New Band **) DX: HA1BF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 911 Hz - Time: 0301Z - DXCC: 239 +[26-09-2024 10:01:08] INFO (** New Band **) DX: OP5K - Spotter: UA4CC - Freq: 7018.1 - Band: 40M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0301Z - DXCC: 209 +[26-09-2024 10:01:08] INFO DX: UA4CPM - Spotter: LU8XW - Freq: 7016.5 - Band: 40M - Mode: CW - Comment: 5 dB 25 WPM CQ - Time: 0301Z - DXCC: 54 +[26-09-2024 10:01:09] INFO DX: F1LED - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 373 Hz - Time: 0301Z - DXCC: 227 +[26-09-2024 10:01:09] INFO (** New Band **) DX: W0PMO - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 1648 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:09] INFO (** New Band **) DX: DL1STG - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 1099 Hz - Time: 0301Z - DXCC: 230 +[26-09-2024 10:01:10] INFO DX: IW9FRA - Spotter: G4IRN - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -15 dB 1501 Hz - Time: 0301Z - DXCC: 248 +[26-09-2024 10:01:10] INFO (** New DXCC **) DX: HI8WJI - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 495 Hz - Time: 0301Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:01:11] INFO DX: SV2KD - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 1635 Hz - Time: 0301Z - DXCC: 236 +[26-09-2024 10:01:11] INFO DX: AC6ZM - Spotter: N8PE - Freq: 7036.5 - Band: 40M - Mode: CW - Comment: - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:11] INFO (** Worked **) DX: D2UY - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 3 dB 186 Hz - Time: 0301Z - DXCC: 401 +[26-09-2024 10:01:11] INFO DX: D2UY - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 3 dB 186 Hz - Time: 0301Z - DXCC: 401 +[26-09-2024 10:01:12] INFO DX: K4IA - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1400 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:12] INFO DX: KF6JXM - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 796 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:13] INFO DX: K4QAL - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1742 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:13] INFO (** New Band **) DX: F5JQF - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2908 Hz - Time: 0301Z - DXCC: 227 +[26-09-2024 10:01:13] INFO DX: W1PID - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1257 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:14] INFO (** Worked **) DX: JA3KVT - Spotter: K7CO - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -10 dB 2281 Hz - Time: 0301Z - DXCC: 339 +[26-09-2024 10:01:14] INFO DX: JA3KVT - Spotter: K7CO - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -10 dB 2281 Hz - Time: 0301Z - DXCC: 339 +[26-09-2024 10:01:14] INFO DX: N9LHP - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +13 dB 2339 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:15] INFO DX: KD9ZQN - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 308 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:15] INFO DX: NT4J - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 857 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:15] INFO DX: UA6WL - Spotter: 2E0INH - Freq: 7009.0 - Band: 40M - Mode: CW - Comment: 11 dB 24 WPM CQ - Time: 0301Z - DXCC: 54 +[26-09-2024 10:01:16] INFO (** New Band **) DX: OK2ZDL - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1851 Hz - Time: 0301Z - DXCC: 503 +[26-09-2024 10:01:16] INFO DX: K2L - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2755 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:17] INFO DX: RA9UAD - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1797 Hz - Time: 0301Z - DXCC: 15 +[26-09-2024 10:01:17] INFO DX: KG5U - Spotter: VE7CC - Freq: 21031.4 - Band: 15M - Mode: CW - Comment: 20 dB 30 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:17] INFO DX: UN7CL - Spotter: VU2PTT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1559 Hz - Time: 0301Z - DXCC: 130 +[26-09-2024 10:01:18] INFO (** Worked **) DX: JE1JIM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 1568 Hz - Time: 0301Z - DXCC: 339 +[26-09-2024 10:01:18] INFO DX: JE1JIM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 1568 Hz - Time: 0301Z - DXCC: 339 +[26-09-2024 10:01:18] INFO (** New Band **) DX: DF5AB - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1939 Hz - Time: 0301Z - DXCC: 230 +[26-09-2024 10:01:19] INFO DX: N3AD - Spotter: AC0C - Freq: 14023.3 - Band: 20M - Mode: CW - Comment: 17 dB 38 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:19] INFO (** Worked **) DX: WU6P - Spotter: N9CO - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 34 dB 39 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:19] INFO DX: WU6P - Spotter: N9CO - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 34 dB 39 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:20] INFO DX: WJ9B - Spotter: K7EK - Freq: 14032.5 - Band: 20M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:20] INFO DX: VE6CV - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1555 Hz - Time: 0301Z - DXCC: 1 +[26-09-2024 10:01:20] INFO DX: KG5U - Spotter: VE6AO - Freq: 21031.4 - Band: 15M - Mode: CW - Comment: 9 dB 29 WPM CQ - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:21] INFO DX: WB2AA - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 2164 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:21] INFO DX: WA3MH - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1511 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:22] INFO DX: AL7DS - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1353 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:22] INFO DX: KI5VJQ - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1403 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:22] INFO DX: KI5UKI - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1347 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:23] INFO DX: W6SCS - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 857 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:23] INFO DX: K6SKI - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 2278 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:24] INFO DX: RV3IO - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1227 Hz - Time: 0301Z - DXCC: 54 +[26-09-2024 10:01:24] INFO DX: KE4PWE - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1026 Hz - Time: 0301Z - DXCC: 291 +[26-09-2024 10:01:25] INFO DX: N5TJ - Spotter: W3WHK - Freq: 14027.5 - Band: 20M - Mode: CW - Comment: - Time: 0301Z - DXCC: 291 +[26-09-2024 10:03:08] INFO config loaded. +[26-09-2024 10:03:08] INFO Callsign: XV9Q +[26-09-2024 10:03:08] INFO deleting existing database +[26-09-2024 10:03:08] INFO Opening SQLite database +[26-09-2024 10:03:08] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:03:08] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:03:08] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:03:08] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:03:27] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:27] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:28] ERROR Error reading message: read tcp 10.10.10.106:61320->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[26-09-2024 10:03:34] INFO config loaded. +[26-09-2024 10:03:34] INFO Callsign: XV9Q +[26-09-2024 10:03:34] INFO deleting existing database +[26-09-2024 10:03:34] INFO Opening SQLite database +[26-09-2024 10:03:34] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:03:34] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:03:34] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:03:34] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:03:38] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:03:38] INFO Found login prompt...sending callsign +[26-09-2024 10:03:49] INFO config loaded. +[26-09-2024 10:03:49] INFO Callsign: XV9Q +[26-09-2024 10:03:49] INFO deleting existing database +[26-09-2024 10:03:49] INFO Opening SQLite database +[26-09-2024 10:03:49] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:03:49] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:03:49] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:03:49] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:03:50] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:03:50] INFO Found login prompt...sending callsign +[26-09-2024 10:03:57] INFO FT8 is on as defined in the config file +[26-09-2024 10:03:57] INFO Skimmer is on as defined in the config file +[26-09-2024 10:03:58] INFO DX: K5NBL - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 1178 Hz - Time: 0303Z - DXCC: 291 +[26-09-2024 10:04:08] INFO config loaded. +[26-09-2024 10:04:08] INFO Callsign: XV9Q +[26-09-2024 10:04:08] INFO deleting existing database +[26-09-2024 10:04:08] INFO Opening SQLite database +[26-09-2024 10:04:08] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:04:08] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:04:08] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:04:08] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:04:08] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:04:09] INFO Found login prompt...sending callsign +[26-09-2024 10:04:11] INFO FT8 is on as defined in the config file +[26-09-2024 10:04:11] INFO Skimmer is on as defined in the config file +[26-09-2024 10:04:11] INFO DX: N4XTT - Spotter: ZF1A - Freq: 7027.2 - Band: 40M - Mode: CW - Comment: 21 dB 36 WPM CQ - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:12] INFO DX: KD2NF - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2469 Hz - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:12] INFO (** New Band **) DX: MI0NWA - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 541 Hz - Time: 0304Z - DXCC: 265 +[26-09-2024 10:04:13] INFO DX: WB0ATS - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 922 Hz - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:13] INFO DX: OD5ZZ - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 1679 Hz - Time: 0304Z - DXCC: 354 +[26-09-2024 10:04:14] INFO (** New Band **) DX: G0LUH - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 793 Hz - Time: 0304Z - DXCC: 223 +[26-09-2024 10:04:14] INFO DX: W5DM - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 730 Hz - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:26] INFO DX: K4PI - Spotter: LZ4UX - Freq: 7037.7 - Band: 40M - Mode: CW - Comment: 11 dB 37 WPM CQ - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:26] INFO DX: RA3QTT - Spotter: LZ4UX - Freq: 1830.0 - Band: 17M - Mode: CW - Comment: 2 dB 22 WPM CQ - Time: 0304Z - DXCC: 54 +[26-09-2024 10:04:27] INFO DX: OK1CF - Spotter: MM0ZBH - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 35 dB 21 WPM CQ - Time: 0304Z - DXCC: 503 +[26-09-2024 10:04:27] INFO DX: N7NR - Spotter: MM0ZBH - Freq: 14031.5 - Band: 20M - Mode: CW - Comment: 6 dB 36 WPM CQ - Time: 0304Z - DXCC: 291 +[26-09-2024 10:04:28] INFO DX: KC4WQ - Spotter: TI7W - Freq: 7044.4 - Band: 40M - Mode: CW - Comment: 22 dB 33 WPM CQ - Time: 0304Z - DXCC: 291 +[26-09-2024 10:07:16] INFO config loaded. +[26-09-2024 10:07:16] INFO Callsign: XV9Q +[26-09-2024 10:07:16] INFO deleting existing database +[26-09-2024 10:07:16] INFO Opening SQLite database +[26-09-2024 10:07:16] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:07:16] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:07:16] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:07:16] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:07:16] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:07:17] INFO Found login prompt...sending callsign +[26-09-2024 10:07:19] INFO FT8 is on as defined in the config file +[26-09-2024 10:07:19] INFO Skimmer is on as defined in the config file +[26-09-2024 10:07:20] INFO DX: N7NR - Spotter: WB6BEE - Freq: 14031.5 - Band: 20M - Mode: CW - Comment: 28 dB 37 WPM CQ - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:20] INFO DX: K1NV - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 1336 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:20] INFO DX: N2NT - Spotter: WE9V - Freq: 14029.0 - Band: 20M - Mode: CW - Comment: 31 dB 38 WPM CQ - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:21] INFO (** New Band **) DX: HA1BF - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +12 dB 790 Hz - Time: 0307Z - DXCC: 239 +[26-09-2024 10:07:21] INFO (** New Band **) DX: CT2HEX - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 1315 Hz - Time: 0307Z - DXCC: 272 +[26-09-2024 10:07:22] INFO (** New Band **) DX: YO6LM - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1258 Hz - Time: 0307Z - DXCC: 275 +[26-09-2024 10:07:22] INFO DX: KM4SXE - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 431 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:22] INFO (** New Band **) DX: G3WGC - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1207 Hz - Time: 0307Z - DXCC: 223 +[26-09-2024 10:07:23] INFO (** New Band **) DX: IW3SOI - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 887 Hz - Time: 0307Z - DXCC: 248 +[26-09-2024 10:07:23] INFO DX: AC9HP - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1144 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:24] INFO DX: K6SKI - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2183 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:24] INFO DX: AF0E - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +10 dB 793 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:25] INFO DX: KQ4IIQ - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 491 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:25] INFO DX: N7US - Spotter: HA6PX - Freq: 7029.1 - Band: 40M - Mode: CW - Comment: 12 dB 36 WPM CQ - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:25] INFO DX: N4GO - Spotter: JN1ILK - Freq: 14038.3 - Band: 20M - Mode: CW - Comment: 17 dB 36 WPM CQ - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:26] INFO DX: RN3GG - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1787 Hz - Time: 0307Z - DXCC: 54 +[26-09-2024 10:07:26] INFO (** New DXCC **) DX: 4O3RB - Spotter: DF7GB - Freq: 7012.9 - Band: 40M - Mode: CW - Comment: 20 dB 22 WPM CQ - Time: 0307Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:07:27] INFO DX: VE3NNT - Spotter: DL0PF - Freq: 7031.5 - Band: 40M - Mode: CW - Comment: 15 dB 37 WPM CQ - Time: 0307Z - DXCC: 1 +[26-09-2024 10:07:27] INFO DX: NA8V - Spotter: DL0PF - Freq: 7023.9 - Band: 40M - Mode: CW - Comment: 21 dB 37 WPM CQ - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:28] INFO DX: PY2DEL - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 1643 Hz - Time: 0307Z - DXCC: 108 +[26-09-2024 10:07:28] INFO DX: PU2PFH - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 1715 Hz - Time: 0307Z - DXCC: 108 +[26-09-2024 10:07:28] INFO DX: W6CAG - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 2603 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:29] INFO DX: K2CAF - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 510 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:29] INFO DX: KK7HXB - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1656 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:30] INFO DX: K9LLC - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2605 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:30] INFO DX: KN6LCM - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +13 dB 1621 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:31] INFO DX: WA4TED - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1205 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:07:31] INFO DX: AL7DS - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 1809 Hz - Time: 0307Z - DXCC: 291 +[26-09-2024 10:08:04] INFO config loaded. +[26-09-2024 10:08:04] INFO Callsign: XV9Q +[26-09-2024 10:08:04] INFO deleting existing database +[26-09-2024 10:08:04] INFO Opening SQLite database +[26-09-2024 10:08:04] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:08:04] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:08:04] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:08:04] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:08:04] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:08:05] INFO Found login prompt...sending callsign +[26-09-2024 10:08:11] INFO config loaded. +[26-09-2024 10:08:11] INFO Callsign: XV9Q +[26-09-2024 10:08:11] INFO deleting existing database +[26-09-2024 10:08:11] INFO Opening SQLite database +[26-09-2024 10:08:11] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:08:11] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:08:11] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:08:11] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:08:12] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:08:12] INFO Found login prompt...sending callsign +[26-09-2024 10:09:36] INFO config loaded. +[26-09-2024 10:09:36] INFO Callsign: XV9Q +[26-09-2024 10:09:36] INFO deleting existing database +[26-09-2024 10:09:36] INFO Opening SQLite database +[26-09-2024 10:09:36] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:09:36] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:09:36] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:09:36] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:09:37] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:09:37] INFO Found login prompt...sending callsign +[26-09-2024 10:09:39] INFO FT8 is on as defined in the config file +[26-09-2024 10:09:39] INFO Skimmer is on as defined in the config file +[26-09-2024 10:10:37] INFO config loaded. +[26-09-2024 10:10:37] INFO Callsign: XV9Q +[26-09-2024 10:10:37] INFO deleting existing database +[26-09-2024 10:10:37] INFO Opening SQLite database +[26-09-2024 10:10:37] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:10:37] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:10:37] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:10:37] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:10:38] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:10:38] INFO Found login prompt...sending callsign +[26-09-2024 10:10:56] INFO config loaded. +[26-09-2024 10:10:56] INFO Callsign: XV9Q +[26-09-2024 10:10:56] INFO deleting existing database +[26-09-2024 10:10:56] INFO Opening SQLite database +[26-09-2024 10:10:56] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:10:56] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:10:56] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:10:56] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:10:57] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:10:57] INFO Found login prompt...sending callsign +[26-09-2024 10:11:59] INFO config loaded. +[26-09-2024 10:11:59] INFO Callsign: XV9Q +[26-09-2024 10:11:59] INFO deleting existing database +[26-09-2024 10:11:59] INFO Opening SQLite database +[26-09-2024 10:11:59] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:11:59] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:11:59] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:11:59] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:11:59] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:12:00] INFO Found login prompt...sending callsign +[26-09-2024 10:12:02] INFO FT8 is on as defined in the config file +[26-09-2024 10:12:02] INFO Skimmer is on as defined in the config file +[26-09-2024 10:12:03] INFO DX: WA6URY - Spotter: WS2C - Freq: 14034.5 - Band: 20M - Mode: CW - Comment: 15 dB 18 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:03] INFO DX: K5UZ - Spotter: ET3AA - Freq: 14029.5 - Band: 20M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:04] INFO (** New Band **) DX: HA1BF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 911 Hz - Time: 0312Z - DXCC: 239 +[26-09-2024 10:12:04] INFO DX: VE6RST - Spotter: W3OA - Freq: 14039.0 - Band: 20M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0312Z - DXCC: 1 +[26-09-2024 10:12:05] INFO DX: N5NA - Spotter: W3OA - Freq: 14039.5 - Band: 20M - Mode: CW - Comment: 53 dB 33 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:05] INFO DX: IU1RZX - Spotter: W3OA - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 634 Hz - Time: 0312Z - DXCC: 248 +[26-09-2024 10:12:05] INFO DX: KR2Q - Spotter: K3PA - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 30 dB 35 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:06] INFO (** New Band **) DX: OK1RR - Spotter: DF7GB - Freq: 7030.8 - Band: 40M - Mode: CW - Comment: 9 dB 31 WPM CQ - Time: 0312Z - DXCC: 503 +[26-09-2024 10:12:06] INFO DX: RU9DX - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1509 Hz - Time: 0312Z - DXCC: 15 +[26-09-2024 10:12:07] INFO DX: KH7X - Spotter: KM3T - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 32 dB 35 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:07] INFO DX: NA8V - Spotter: K4PP - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 28 dB 38 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:07] INFO DX: W5TM - Spotter: 3V8SS - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 17 dB 39 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:08] INFO (** Worked **) DX: N2IC - Spotter: 3V8SS - Freq: 14032.8 - Band: 20M - Mode: CW - Comment: 17 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:08] INFO DX: N2IC - Spotter: 3V8SS - Freq: 14032.8 - Band: 20M - Mode: CW - Comment: 17 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:08] INFO DX: KF6NCX - Spotter: KH6LC - Freq: 7038.2 - Band: 40M - Mode: CW - Comment: 10 dB 22 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:08] INFO (** New Band **) DX: G8IXM - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 863 Hz - Time: 0312Z - DXCC: 223 +[26-09-2024 10:12:09] INFO DX: KI7N - Spotter: K9IMM - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 2025 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:09] INFO DX: M7OT - Spotter: ND7K - Freq: 14037.8 - Band: 20M - Mode: CW - Comment: 10 dB 31 WPM CQ - Time: 0312Z - DXCC: 223 +[26-09-2024 10:12:10] INFO DX: W0XM - Spotter: AC0C - Freq: 14040.2 - Band: 20M - Mode: CW - Comment: 21 dB 27 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:10] INFO (** New Band **) DX: 4Z4DX - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 2372 Hz - Time: 0312Z - DXCC: 336 +[26-09-2024 10:12:10] INFO (** New Band **) DX: HB9HSN - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 1140 Hz - Time: 0312Z - DXCC: 287 +[26-09-2024 10:12:11] INFO DX: KD9LSV - Spotter: N7TUG - Freq: 7039.6 - Band: 40M - Mode: CW - Comment: 12 dB 30 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:11] INFO DX: VE7WD - Spotter: N7TUG - Freq: 7022.1 - Band: 40M - Mode: CW - Comment: 28 dB 16 WPM CQ - Time: 0312Z - DXCC: 1 +[26-09-2024 10:12:12] INFO DX: JR3BWF - Spotter: JN1ILK - Freq: 14051.0 - Band: 20M - Mode: CW - Comment: 28 dB 23 WPM CQ - Time: 0312Z - DXCC: 339 +[26-09-2024 10:12:12] INFO (** Worked **) DX: VE7ZO - Spotter: NG7M - Freq: 14034.3 - Band: 20M - Mode: CW - Comment: 27 dB 37 WPM CQ - Time: 0312Z - DXCC: 1 +[26-09-2024 10:12:12] INFO DX: VE7ZO - Spotter: NG7M - Freq: 14034.3 - Band: 20M - Mode: CW - Comment: 27 dB 37 WPM CQ - Time: 0312Z - DXCC: 1 +[26-09-2024 10:12:12] INFO DX: K2YR - Spotter: NG7M - Freq: 7044.9 - Band: 40M - Mode: CW - Comment: 4 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:13] INFO DX: W7XB - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1380 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:13] INFO DX: N4QEP - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 793 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:14] INFO DX: R9AV - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1322 Hz - Time: 0312Z - DXCC: 15 +[26-09-2024 10:12:14] INFO (** New Band **) DX: PY8WW - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 1180 Hz - Time: 0312Z - DXCC: 108 +[26-09-2024 10:12:14] INFO (** Worked **) DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +15 dB 340 Hz - Time: 0312Z - DXCC: 401 +[26-09-2024 10:12:14] INFO DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +15 dB 340 Hz - Time: 0312Z - DXCC: 401 +[26-09-2024 10:12:15] INFO DX: WW5MD - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1226 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:15] INFO DX: AF0E - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 6 dB 906 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:16] INFO DX: K3WJV - Spotter: W1NT - Freq: 14042.5 - Band: 20M - Mode: CW - Comment: 12 dB 33 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:16] INFO DX: K7CAR - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1800 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:16] INFO DX: VA7XFM - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +15 dB 765 Hz - Time: 0312Z - DXCC: 1 +[26-09-2024 10:12:17] INFO DX: AD0W - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2402 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:17] INFO DX: AK4T - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 2603 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:18] INFO DX: AL7DS - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1710 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:18] INFO DX: K0INN - Spotter: N6TV - Freq: 7026.1 - Band: 40M - Mode: CW - Comment: 9 dB 29 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:19] INFO DX: W7FN - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 2444 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:19] INFO DX: KF6JXM - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 796 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:19] INFO DX: K6IT - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1064 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:20] INFO DX: KI0E - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1290 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:41] INFO config loaded. +[26-09-2024 10:12:41] INFO Callsign: XV9Q +[26-09-2024 10:12:41] INFO deleting existing database +[26-09-2024 10:12:41] INFO Opening SQLite database +[26-09-2024 10:12:41] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:12:41] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:12:41] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:12:41] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:12:41] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:12:41] INFO Found login prompt...sending callsign +[26-09-2024 10:12:43] INFO FT8 is on as defined in the config file +[26-09-2024 10:12:43] INFO Skimmer is on as defined in the config file +[26-09-2024 10:12:44] INFO (** New Band **) DX: IK3VUT - Spotter: SE5E - Freq: 7031.3 - Band: 40M - Mode: CW - Comment: 47 dB 23 WPM CQ - Time: 0312Z - DXCC: 248 +[26-09-2024 10:12:45] INFO DX: N2NT - Spotter: K6FOD - Freq: 7029.5 - Band: 40M - Mode: CW - Comment: 25 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:45] INFO DX: N9TK - Spotter: K6FOD - Freq: 7039.1 - Band: 40M - Mode: CW - Comment: 18 dB 34 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:45] INFO DX: W5BIB - Spotter: K6FOD - Freq: 18078.0 - Band: 17M - Mode: CW - Comment: 8 dB 23 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:46] INFO DX: K4IA - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1379 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:46] INFO DX: NJ6Q - Spotter: W3OA - Freq: 7044.0 - Band: 40M - Mode: CW - Comment: 15 dB 31 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:47] INFO DX: WJ9B - Spotter: W3OA - Freq: 7035.1 - Band: 40M - Mode: CW - Comment: 22 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:47] INFO (** Worked **) DX: K7QA - Spotter: W3OA - Freq: 14031.8 - Band: 20M - Mode: CW - Comment: 24 dB 33 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:47] INFO DX: K7QA - Spotter: W3OA - Freq: 14031.8 - Band: 20M - Mode: CW - Comment: 24 dB 33 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:47] INFO DX: KF6JXM - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 781 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:48] INFO DX: KK5JY - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 2189 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:48] INFO DX: W0PE - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2882 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:49] INFO DX: KX4QC - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 963 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:49] INFO DX: KS0JD - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1295 Hz - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:49] INFO (** Worked **) DX: BD4RHV - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 2213 Hz - Time: 0312Z - DXCC: 318 +[26-09-2024 10:12:49] INFO DX: BD4RHV - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 2213 Hz - Time: 0312Z - DXCC: 318 +[26-09-2024 10:12:50] INFO (** New Band **) DX: RA2FCF - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1550 Hz - Time: 0312Z - DXCC: 126 +[26-09-2024 10:12:50] INFO DX: N5TJ - Spotter: KA7OEI - Freq: 14024.3 - Band: 20M - Mode: CW - Comment: 45 dB 37 WPM CQ - Time: 0312Z - DXCC: 291 +[26-09-2024 10:12:51] INFO DX: LA7IJA - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1648 Hz - Time: 0312Z - DXCC: 266 +[26-09-2024 10:13:37] INFO config loaded. +[26-09-2024 10:13:37] INFO Callsign: XV9Q +[26-09-2024 10:13:37] INFO deleting existing database +[26-09-2024 10:13:37] INFO Opening SQLite database +[26-09-2024 10:13:37] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:13:37] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:13:37] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:13:37] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:13:37] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:13:38] INFO Found login prompt...sending callsign +[26-09-2024 10:13:40] INFO FT8 is on as defined in the config file +[26-09-2024 10:13:40] INFO Skimmer is on as defined in the config file +[26-09-2024 10:13:41] INFO DX: K3WW - Spotter: W2NAF - Freq: 7025.7 - Band: 40M - Mode: CW - Comment: 24 dB 37 WPM CQ - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:41] INFO DX: KD2NF - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 546 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:41] INFO DX: AD3VO - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 2598 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:42] INFO DX: IK3ACI - Spotter: VE3EID - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1029 Hz - Time: 0313Z - DXCC: 248 +[26-09-2024 10:13:42] INFO DX: AA9I - Spotter: W1NT - Freq: 10120.9 - Band: 30M - Mode: CW - Comment: 25 dB 18 WPM CQ - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:43] INFO (** New Band **) DX: K4CAE - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 1272 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:43] INFO (** New Band **) DX: F5NNN - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 1365 Hz - Time: 0313Z - DXCC: 227 +[26-09-2024 10:13:43] INFO DX: NE1V - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 1524 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:44] INFO DX: W5KGM - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1891 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:44] INFO DX: WA4TED - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -22 dB 1066 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:44] INFO (** New Band **) DX: PA0O - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 2903 Hz - Time: 0313Z - DXCC: 263 +[26-09-2024 10:13:45] INFO (** New Band **) DX: N9MWB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1993 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:45] INFO DX: CT2GQA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 956 Hz - Time: 0313Z - DXCC: 272 +[26-09-2024 10:13:46] INFO DX: K4ZH - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 1505 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:46] INFO (** New Band **) DX: SV1HFE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 2885 Hz - Time: 0313Z - DXCC: 236 +[26-09-2024 10:13:46] INFO DX: K2ZMM - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 544 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:47] INFO DX: KH7X - Spotter: KM3T - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 28 dB 38 WPM CQ - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:47] INFO (** Worked **) DX: PY2DPM - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 877 Hz - Time: 0313Z - DXCC: 108 +[26-09-2024 10:13:47] INFO DX: PY2DPM - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 877 Hz - Time: 0313Z - DXCC: 108 +[26-09-2024 10:13:47] INFO (** New Band **) DX: HA6NL - Spotter: LA7GIA - Freq: 7023.5 - Band: 40M - Mode: CW - Comment: 7 dB 30 WPM CQ - Time: 0313Z - DXCC: 239 +[26-09-2024 10:13:48] INFO DX: N3QE - Spotter: S53WW - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 18 dB 35 WPM CQ - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:48] INFO DX: PD1LVK - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2200 Hz - Time: 0313Z - DXCC: 263 +[26-09-2024 10:13:49] INFO (** New Band **) DX: OK2ZDL - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2122 Hz - Time: 0313Z - DXCC: 503 +[26-09-2024 10:13:49] INFO DX: N4BP - Spotter: W6YX - Freq: 14028.2 - Band: 20M - Mode: CW - Comment: 38 dB 30 WPM CQ - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:50] INFO DX: WS1N - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1800 Hz - Time: 0313Z - DXCC: 291 +[26-09-2024 10:13:50] INFO (** New DXCC **) DX: J88BTI - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1211 Hz - Time: 0313Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:15:13] INFO config loaded. +[26-09-2024 10:15:13] INFO Callsign: XV9Q +[26-09-2024 10:15:13] INFO deleting existing database +[26-09-2024 10:15:13] INFO Opening SQLite database +[26-09-2024 10:15:13] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:15:13] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:15:13] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:15:13] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:15:14] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:15:28] INFO config loaded. +[26-09-2024 10:15:28] INFO Callsign: XV9Q +[26-09-2024 10:15:28] INFO deleting existing database +[26-09-2024 10:15:28] INFO Opening SQLite database +[26-09-2024 10:15:28] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:15:28] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:15:28] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:15:28] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:15:28] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:15:28] INFO Found login prompt...sending callsign +[26-09-2024 10:15:30] INFO FT8 is on as defined in the config file +[26-09-2024 10:15:30] INFO Skimmer is on as defined in the config file +[26-09-2024 10:15:31] INFO (** New Band **) DX: EA6BF - Spotter: KM3T - Freq: 7031.7 - Band: 40M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0315Z - DXCC: 21 +[26-09-2024 10:15:32] INFO (** New Band **) DX: OE3DIA - Spotter: OH4KA - Freq: 10117.7 - Band: 30M - Mode: CW - Comment: 3 dB 26 WPM CQ - Time: 0315Z - DXCC: 206 +[26-09-2024 10:15:32] INFO DX: K3MM - Spotter: ZS1NN - Freq: 7027.5 - Band: 40M - Mode: CW - Comment: 13 dB 40 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:33] INFO DX: VE3NNT - Spotter: AC0C - Freq: 7031.5 - Band: 40M - Mode: CW - Comment: 43 dB 38 WPM CQ - Time: 0315Z - DXCC: 1 +[26-09-2024 10:15:33] INFO (** New Band **) DX: IK3VUT - Spotter: OE6TZE - Freq: 7028.6 - Band: 40M - Mode: CW - Comment: 7 dB 23 WPM CQ - Time: 0315Z - DXCC: 248 +[26-09-2024 10:15:33] INFO DX: OK1CF - Spotter: MM3NDH - Freq: 1825.8 - Band: 17M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0315Z - DXCC: 503 +[26-09-2024 10:15:34] INFO (** New Band **) DX: UT8ER - Spotter: LA7GIA - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 15 dB 17 WPM CQ - Time: 0315Z - DXCC: 288 +[26-09-2024 10:15:34] INFO DX: N2NT - Spotter: KP3CW - Freq: 14029.0 - Band: 20M - Mode: CW - Comment: 28 dB 34 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:35] INFO DX: UB3DQR - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +13 dB 1213 Hz - Time: 0315Z - DXCC: 54 +[26-09-2024 10:15:35] INFO (** New Band **) DX: LY2EW - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 2790 Hz - Time: 0315Z - DXCC: 146 +[26-09-2024 10:15:35] INFO DX: PD0TV - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1501 Hz - Time: 0315Z - DXCC: 263 +[26-09-2024 10:15:36] INFO (** New Band **) DX: K3UA - Spotter: W1NT - Freq: 3529.3 - Band: 80M - Mode: CW - Comment: 25 dB 30 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:36] INFO DX: KW7Q - Spotter: W1NT - Freq: 14030.1 - Band: 20M - Mode: CW - Comment: 28 dB 31 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:36] INFO (** New Mode **) DX: KP4JRS - Spotter: 2E0INH - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 502 Hz - Time: 0315Z - DXCC: 202 +[26-09-2024 10:15:37] INFO DX: KD9LSV - Spotter: ND7K - Freq: 7039.5 - Band: 40M - Mode: CW - Comment: 16 dB 34 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:37] INFO DX: W5TM - Spotter: ND7K - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 32 dB 33 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:38] INFO (** New Band **) DX: F4HAB - Spotter: KG2H - Freq: 7075.9 - Band: 40M - Mode: FT8 - Comment: - Time: 0315Z - DXCC: 227 +[26-09-2024 10:15:38] INFO DX: W5DM - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 706 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:39] INFO DX: KQ4OTE - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1622 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:39] INFO DX: KA1MXL - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 2429 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:39] INFO DX: K0LUZ - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 2751 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:40] INFO DX: R100AR - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +17 dB 524 Hz - Time: 0315Z - DXCC: 54 +[26-09-2024 10:15:40] INFO DX: RV9WF - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 802 Hz - Time: 0315Z - DXCC: 15 +[26-09-2024 10:15:41] INFO (** New Band **) DX: PY5EJ - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2372 Hz - Time: 0315Z - DXCC: 108 +[26-09-2024 10:15:41] INFO (** Worked **) DX: UT5ECZ - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1330 Hz - Time: 0315Z - DXCC: 288 +[26-09-2024 10:15:41] INFO DX: UT5ECZ - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1330 Hz - Time: 0315Z - DXCC: 288 +[26-09-2024 10:15:42] INFO DX: UA9CR - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 1216 Hz - Time: 0315Z - DXCC: 15 +[26-09-2024 10:15:42] INFO DX: KB8ZIO - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 1819 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:42] INFO (** New DXCC **) DX: HI8RMQ - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 2306 Hz - Time: 0315Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:15:43] INFO (** Worked **) DX: RZ0SW - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 899 Hz - Time: 0315Z - DXCC: 15 +[26-09-2024 10:15:43] INFO DX: RZ0SW - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 899 Hz - Time: 0315Z - DXCC: 15 +[26-09-2024 10:15:43] INFO (** Worked **) DX: HZ1TT - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1200 Hz - Time: 0315Z - DXCC: 378 +[26-09-2024 10:15:43] INFO DX: HZ1TT - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1200 Hz - Time: 0315Z - DXCC: 378 +[26-09-2024 10:15:44] INFO (** New DXCC **) DX: HK5WML - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1925 Hz - Time: 0315Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:15:44] INFO (** New DXCC **) DX: J88BTI - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1258 Hz - Time: 0315Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:15:45] INFO DX: LZ3GH - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 1530 Hz - Time: 0315Z - DXCC: 212 +[26-09-2024 10:15:45] INFO DX: KB7FHK - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 788 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:45] INFO DX: WJ9B - Spotter: W1NT - Freq: 7035.1 - Band: 40M - Mode: CW - Comment: 28 dB 37 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:46] INFO (** New Band **) DX: CA2VJM - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1515 Hz - Time: 0315Z - DXCC: 112 +[26-09-2024 10:15:46] INFO DX: KG5U - Spotter: ZL3X - Freq: 14027.5 - Band: 20M - Mode: CW - Comment: 7 dB 30 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:47] INFO DX: K3WW - Spotter: KM3T - Freq: 7025.7 - Band: 40M - Mode: CW - Comment: 35 dB 37 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:47] INFO DX: W9CF - Spotter: KM3T - Freq: 14023.6 - Band: 20M - Mode: CW - Comment: 6 dB 34 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:47] INFO DX: M7OT - Spotter: KM3T - Freq: 14037.8 - Band: 20M - Mode: CW - Comment: 25 dB 29 WPM CQ - Time: 0315Z - DXCC: 223 +[26-09-2024 10:15:48] INFO DX: EA5R - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 295 Hz - Time: 0315Z - DXCC: 281 +[26-09-2024 10:15:48] INFO DX: PY2FZ - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1471 Hz - Time: 0315Z - DXCC: 108 +[26-09-2024 10:15:49] INFO (** New Band **) DX: EA8FJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 565 Hz - Time: 0315Z - DXCC: 29 +[26-09-2024 10:15:49] INFO DX: KF9UG - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +25 dB 762 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:49] INFO (** Worked **) DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +15 dB 204 Hz - Time: 0315Z - DXCC: 401 +[26-09-2024 10:15:49] INFO DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +15 dB 204 Hz - Time: 0315Z - DXCC: 401 +[26-09-2024 10:15:50] INFO DX: WE9G - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +12 dB 456 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:50] INFO (** New Band **) DX: N7ND - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 2615 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:51] INFO (** New Band **) DX: XE2FGC - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 1678 Hz - Time: 0315Z - DXCC: 50 +[26-09-2024 10:15:51] INFO DX: K5TAR - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 182 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:51] INFO (** New Band **) DX: OA4DXZ - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1211 Hz - Time: 0315Z - DXCC: 136 +[26-09-2024 10:15:52] INFO DX: KR6MR - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1472 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:52] INFO DX: KG7IXX - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +14 dB 1275 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:53] INFO DX: W3ICM - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1565 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:53] INFO DX: KO4ULY - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1050 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:53] INFO (** New DXCC **) DX: HI8WJI - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 489 Hz - Time: 0315Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:15:54] INFO DX: KE0N - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1708 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:54] INFO DX: KM0PAR - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1347 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:55] INFO DX: KD7DBL - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1363 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:55] INFO (** New Band **) DX: W1HS - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 714 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:56] INFO (** New Band **) DX: VE3CGD - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 195 Hz - Time: 0315Z - DXCC: 1 +[26-09-2024 10:15:56] INFO DX: KE8WAV - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1925 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:56] INFO DX: N4XTT - Spotter: WE9V - Freq: 7027.1 - Band: 40M - Mode: CW - Comment: 37 dB 34 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:57] INFO DX: WA2HIP - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 2102 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:57] INFO DX: WB0ATS - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 862 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:15:58] INFO (** New Band **) DX: UR4CU - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 719 Hz - Time: 0315Z - DXCC: 288 +[26-09-2024 10:15:58] INFO DX: UA4PDJ - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1906 Hz - Time: 0315Z - DXCC: 54 +[26-09-2024 10:15:59] INFO DX: SV2AOB - Spotter: OH6BG - Freq: 10132.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 151 Hz - Time: 0315Z - DXCC: 236 +[26-09-2024 10:15:59] INFO DX: DF7EF - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 300 Hz - Time: 0315Z - DXCC: 230 +[26-09-2024 10:15:59] INFO DX: WJ9B - Spotter: ZF1A - Freq: 14032.6 - Band: 20M - Mode: CW - Comment: 11 dB 37 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:16:00] INFO DX: KH7X - Spotter: ZF1A - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 21 dB 38 WPM CQ - Time: 0315Z - DXCC: 291 +[26-09-2024 10:16:00] INFO DX: N0FX - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 686 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:16:01] INFO DX: AA4EZ - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 1581 Hz - Time: 0315Z - DXCC: 291 +[26-09-2024 10:17:42] INFO config loaded. +[26-09-2024 10:17:42] INFO Callsign: XV9Q +[26-09-2024 10:17:42] INFO deleting existing database +[26-09-2024 10:17:42] INFO Opening SQLite database +[26-09-2024 10:17:42] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:17:42] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:17:42] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:17:42] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:17:42] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:17:43] INFO Found login prompt...sending callsign +[26-09-2024 10:17:45] INFO FT8 is on as defined in the config file +[26-09-2024 10:17:45] INFO Skimmer is on as defined in the config file +[26-09-2024 10:17:46] INFO DX: PI3MUK - Spotter: HA8TKS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -21 dB 243 Hz - Time: 0317Z - DXCC: 263 +[26-09-2024 10:17:46] INFO DX: KO4VW - Spotter: K6FOD - Freq: 7033.7 - Band: 40M - Mode: CW - Comment: 24 dB 35 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:47] INFO DX: WS7L - Spotter: K6FOD - Freq: 14041.9 - Band: 20M - Mode: CW - Comment: 22 dB 32 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:47] INFO (** New Band **) DX: G3LDI - Spotter: MW0MUT - Freq: 3531.0 - Band: 80M - Mode: CW - Comment: 34 dB 28 WPM CQ - Time: 0317Z - DXCC: 223 +[26-09-2024 10:17:47] INFO (** New Band **) DX: G3WGC - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1252 Hz - Time: 0317Z - DXCC: 223 +[26-09-2024 10:17:48] INFO DX: N7US - Spotter: EA2CW - Freq: 7029.1 - Band: 40M - Mode: CW - Comment: 24 dB 37 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:48] INFO DX: K3MM - Spotter: WC8GOP - Freq: 7027.6 - Band: 40M - Mode: CW - Comment: 30 dB 40 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:49] INFO DX: N0TA - Spotter: WC8GOP - Freq: 7032.6 - Band: 40M - Mode: CW - Comment: 24 dB 30 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:49] INFO DX: N8PE - Spotter: WC8GOP - Freq: 7046.5 - Band: 40M - Mode: CW - Comment: 15 dB 32 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:49] INFO DX: W3EEK - Spotter: W2NAF - Freq: 7020.0 - Band: 40M - Mode: CW - Comment: 10 dB 19 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:50] INFO (** New Band **) DX: HA6NL - Spotter: EA5RQ - Freq: 7023.5 - Band: 40M - Mode: CW - Comment: 7 dB 28 WPM CQ - Time: 0317Z - DXCC: 239 +[26-09-2024 10:17:50] INFO DX: M7OT - Spotter: KH6LC - Freq: 14037.8 - Band: 20M - Mode: CW - Comment: 16 dB 31 WPM CQ - Time: 0317Z - DXCC: 223 +[26-09-2024 10:17:50] INFO DX: N3AD - Spotter: W1NT - Freq: 14035.0 - Band: 20M - Mode: CW - Comment: 17 dB 40 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:51] INFO DX: AD4SA - Spotter: W2MV - Freq: 7041.1 - Band: 40M - Mode: CW - Comment: 25 dB 35 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:51] INFO DX: K4TZ - Spotter: IK4VET - Freq: 7028.8 - Band: 40M - Mode: CW - Comment: 16 dB 37 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:52] INFO DX: K8CW - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2033 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:52] INFO DX: KF6T - Spotter: W4AX - Freq: 14030.8 - Band: 20M - Mode: CW - Comment: 3 dB 23 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:52] INFO DX: N8KH - Spotter: W1NT - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 31 dB 39 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:53] INFO (** New Mode **) DX: CO8LY - Spotter: W1NT - Freq: 10107.0 - Band: 30M - Mode: CW - Comment: 28 dB 22 WPM CQ - Time: 0317Z - DXCC: 70 +[26-09-2024 10:17:53] INFO (** New DXCC **) DX: HK1O - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 890 Hz - Time: 0317Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:17:53] INFO DX: WA4TED - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1062 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:54] INFO DX: W4EMJ - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 864 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:54] INFO (** New Band **) DX: YO6LM - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1258 Hz - Time: 0317Z - DXCC: 275 +[26-09-2024 10:17:55] INFO DX: KA2ADX - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 600 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:55] INFO (** New Band **) DX: UR5WIF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2338 Hz - Time: 0317Z - DXCC: 288 +[26-09-2024 10:17:55] INFO (** New Band **) DX: G7RHF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 2762 Hz - Time: 0317Z - DXCC: 223 +[26-09-2024 10:17:56] INFO DX: K8BB - Spotter: DM5GG - Freq: 7034.7 - Band: 40M - Mode: CW - Comment: 14 dB 31 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:56] INFO DX: WW5MD - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1168 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:56] INFO DX: AA9I - Spotter: KM3T - Freq: 10114.6 - Band: 30M - Mode: CW - Comment: 16 dB 21 WPM CQ - Time: 0317Z - DXCC: 291 +[26-09-2024 10:17:57] INFO DX: KS0JD - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1329 Hz - Time: 0317Z - DXCC: 291 +[26-09-2024 10:18:19] INFO config loaded. +[26-09-2024 10:18:19] INFO Callsign: XV9Q +[26-09-2024 10:18:19] INFO deleting existing database +[26-09-2024 10:18:19] INFO Opening SQLite database +[26-09-2024 10:18:19] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:18:19] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:18:19] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:18:19] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:18:19] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:18:20] INFO Found login prompt...sending callsign +[26-09-2024 10:18:22] INFO FT8 is on as defined in the config file +[26-09-2024 10:18:22] INFO Skimmer is on as defined in the config file +[26-09-2024 10:18:23] INFO (** New Band **) DX: HB9HSJ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1087 Hz - Time: 0318Z - DXCC: 287 +[26-09-2024 10:18:23] INFO DX: KC7V - Spotter: K9LC - Freq: 7039.1 - Band: 40M - Mode: CW - Comment: 19 dB 38 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:23] INFO DX: RT6C - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +17 dB 1871 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:24] INFO (** New Band **) DX: CE8EIO - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 2013 Hz - Time: 0318Z - DXCC: 112 +[26-09-2024 10:18:24] INFO (** New Band **) DX: HA1BF - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 833 Hz - Time: 0318Z - DXCC: 239 +[26-09-2024 10:18:24] INFO DX: KM4EYS - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2923 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:25] INFO DX: N7DX - Spotter: AA0O - Freq: 14033.4 - Band: 20M - Mode: CW - Comment: 17 dB 40 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:25] INFO DX: CT2GQA - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 1067 Hz - Time: 0318Z - DXCC: 272 +[26-09-2024 10:18:26] INFO DX: AA4NP - Spotter: DL8LAS - Freq: 7024.5 - Band: 40M - Mode: CW - Comment: 10 dB 32 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:26] INFO (** New Band **) DX: HB9ALO - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1367 Hz - Time: 0318Z - DXCC: 287 +[26-09-2024 10:18:26] INFO (** New Band **) DX: YR1400VT - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 1528 Hz - Time: 0318Z - DXCC: 275 +[26-09-2024 10:18:27] INFO (** New Band **) DX: EA1IOK - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 2692 Hz - Time: 0318Z - DXCC: 281 +[26-09-2024 10:18:27] INFO (** New Band **) DX: DL1STG - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 1110 Hz - Time: 0318Z - DXCC: 230 +[26-09-2024 10:18:27] INFO (** New Band **) DX: UR5WIF - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2279 Hz - Time: 0318Z - DXCC: 288 +[26-09-2024 10:18:28] INFO (** New Band **) DX: UR4FY - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 718 Hz - Time: 0318Z - DXCC: 288 +[26-09-2024 10:18:28] INFO DX: RK6BA - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1516 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:28] INFO (** New Band **) DX: EA9PB - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1261 Hz - Time: 0318Z - DXCC: 32 +[26-09-2024 10:18:29] INFO DX: K7NWF - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1261 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:29] INFO DX: WS1N - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 1870 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:30] INFO DX: KL5DY - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1937 Hz - Time: 0318Z - DXCC: 6 +[26-09-2024 10:18:30] INFO DX: WA4TED - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1256 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:30] INFO (** Worked **) DX: NJ7G - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +16 dB 2197 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:30] INFO DX: NJ7G - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +16 dB 2197 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:31] INFO DX: AG5ZN - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 2357 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:31] INFO DX: K4PI - Spotter: VE7CC - Freq: 7037.7 - Band: 40M - Mode: CW - Comment: 7 dB 36 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:31] INFO DX: N7US - Spotter: ZF1A - Freq: 7029.2 - Band: 40M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:32] INFO DX: NT6Q - Spotter: ZF1A - Freq: 14026.5 - Band: 20M - Mode: CW - Comment: 22 dB 38 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:32] INFO DX: KF6NCX - Spotter: ZF1A - Freq: 14030.8 - Band: 20M - Mode: CW - Comment: 12 dB 23 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:33] INFO DX: N5RZ - Spotter: NG7M - Freq: 7042.2 - Band: 40M - Mode: CW - Comment: 19 dB 38 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:33] INFO DX: N4BP - Spotter: NG7M - Freq: 14028.2 - Band: 20M - Mode: CW - Comment: 29 dB 31 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:33] INFO DX: W6AYC - Spotter: NG7M - Freq: 7043.1 - Band: 40M - Mode: CW - Comment: 28 dB 30 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:34] INFO (** New Band **) DX: AC8XI - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 875 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:34] INFO (** New Band **) DX: EA3HMM - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 936 Hz - Time: 0318Z - DXCC: 281 +[26-09-2024 10:18:34] INFO (** New Band **) DX: N1KI - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 3 dB 1466 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:35] INFO DX: UA3PRS - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 296 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:35] INFO DX: K0LLT - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 640 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:35] INFO DX: N7NHS - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1157 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:36] INFO DX: N1BZ - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1736 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:36] INFO DX: R2XM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1819 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:36] INFO DX: KE9ACJ - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2634 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:37] INFO DX: PD5DLB - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 469 Hz - Time: 0318Z - DXCC: 263 +[26-09-2024 10:18:37] INFO DX: N3FMC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1700 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:38] INFO (** New DXCC **) DX: J88IH - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 1 dB 843 Hz - Time: 0318Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:18:38] INFO (** Worked **) DX: D2UY - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 5 dB 236 Hz - Time: 0318Z - DXCC: 401 +[26-09-2024 10:18:38] INFO DX: D2UY - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 5 dB 236 Hz - Time: 0318Z - DXCC: 401 +[26-09-2024 10:18:38] INFO DX: WA8CAC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1706 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:39] INFO DX: KB4EXI - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 2049 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:39] INFO DX: PD1BER - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 2195 Hz - Time: 0318Z - DXCC: 263 +[26-09-2024 10:18:39] INFO DX: KO6FCM - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:40] INFO (** Worked **) DX: RX6FN - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1635 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:40] INFO DX: RX6FN - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1635 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:40] INFO (** New DXCC **) DX: HK5WML - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1915 Hz - Time: 0318Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:18:41] INFO (** New Mode **) DX: NP4VA - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 8 dB 1985 Hz - Time: 0318Z - DXCC: 202 +[26-09-2024 10:18:41] INFO DX: K8CW - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 2111 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:41] INFO DX: KD7DBL - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1401 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:42] INFO DX: R6FIU - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 2222 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:42] INFO DX: ZL1BD - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 2288 Hz - Time: 0318Z - DXCC: 170 +[26-09-2024 10:18:42] INFO DX: VE3CGD - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 189 Hz - Time: 0318Z - DXCC: 1 +[26-09-2024 10:18:43] INFO DX: R2DNP - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1810 Hz - Time: 0318Z - DXCC: 54 +[26-09-2024 10:18:43] INFO (** New Band **) DX: KF9UG - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1109 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:44] INFO DX: W0SGC - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1762 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:44] INFO DX: KZ4ZZ - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1025 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:44] INFO (** New DXCC **) DX: HK5R - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1096 Hz - Time: 0318Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:18:45] INFO (** New Band **) DX: OE3DIA - Spotter: 3V8SS - Freq: 7028.1 - Band: 40M - Mode: CW - Comment: 13 dB 25 WPM CQ - Time: 0318Z - DXCC: 206 +[26-09-2024 10:18:45] INFO (** New Band **) DX: DL9NO - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2070 Hz - Time: 0318Z - DXCC: 230 +[26-09-2024 10:18:46] INFO DX: N3QE - Spotter: V51YJ - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 17 dB 34 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:46] INFO DX: N2IC - Spotter: F4GOU - Freq: 7045.6 - Band: 40M - Mode: CW - Comment: 14 dB 34 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:47] INFO DX: KJ4MH - Spotter: WB6BEE - Freq: 7055.0 - Band: 40M - Mode: CW - Comment: 21 dB 13 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:47] INFO DX: N8KH - Spotter: ES2RR - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 21 dB 36 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:47] INFO DX: N4NJJ - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 2202 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:48] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: WA7LNW - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 2472 Hz - Time: 0318Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:18:48] INFO DX: HL1LUA - Spotter: WA7LNW - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1813 Hz - Time: 0318Z - DXCC: 137 +[26-09-2024 10:18:49] INFO DX: KK7IGE - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 776 Hz - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:49] INFO DX: NT6Q - Spotter: DD5XX - Freq: 7034.3 - Band: 40M - Mode: CW - Comment: 14 dB 37 WPM CQ - Time: 0318Z - DXCC: 291 +[26-09-2024 10:18:50] INFO DX: BI1GK - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 1543 Hz - Time: 0318Z - DXCC: 318 +[26-09-2024 10:22:48] INFO config loaded. +[26-09-2024 10:22:48] INFO Callsign: XV9Q +[26-09-2024 10:22:48] INFO deleting existing database +[26-09-2024 10:22:48] INFO Opening SQLite database +[26-09-2024 10:22:48] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:22:48] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:22:48] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:22:48] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:22:49] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:22:49] INFO Found login prompt...sending callsign +[26-09-2024 10:22:51] INFO FT8 is on as defined in the config file +[26-09-2024 10:22:51] INFO Skimmer is on as defined in the config file +[26-09-2024 10:22:52] INFO DX: PY1QQ - Spotter: RK3TD - Freq: 14017.0 - Band: 20M - Mode: CW - Comment: 16 dB 23 WPM CQ - Time: 0322Z - DXCC: 108 +[26-09-2024 10:22:52] INFO DX: N2YO - Spotter: DD5XX - Freq: 7028.2 - Band: 40M - Mode: CW - Comment: 12 dB 40 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:53] INFO DX: N6DD - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +13 dB 249 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:53] INFO DX: N5NLP - Spotter: ZF1A - Freq: 14057.1 - Band: 20M - Mode: CW - Comment: 25 dB 13 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:54] INFO DX: WB0RLJ - Spotter: ZF1A - Freq: 14035.0 - Band: 20M - Mode: CW - Comment: 11 dB 23 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:54] INFO DX: N9IV - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 957 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:55] INFO DX: KK7UNF - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1464 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:55] INFO (** New Band **) DX: IK8OAM - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 1810 Hz - Time: 0322Z - DXCC: 248 +[26-09-2024 10:22:55] INFO (** New Band **) DX: EA1FCH - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 649 Hz - Time: 0322Z - DXCC: 281 +[26-09-2024 10:22:56] INFO (** New Band **) DX: F4WEJ - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 1502 Hz - Time: 0322Z - DXCC: 227 +[26-09-2024 10:22:56] INFO (** New Band **) DX: KE5HDE - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -22 dB 2114 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:57] INFO DX: R6LE - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1037 Hz - Time: 0322Z - DXCC: 54 +[26-09-2024 10:22:57] INFO (** New Band **) DX: UT2AU - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1278 Hz - Time: 0322Z - DXCC: 288 +[26-09-2024 10:22:57] INFO (** New Band **) DX: EA9PB - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1252 Hz - Time: 0322Z - DXCC: 32 +[26-09-2024 10:22:58] INFO DX: UB3DQR - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1207 Hz - Time: 0322Z - DXCC: 54 +[26-09-2024 10:22:58] INFO (** New Band **) DX: UR7MB - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 780 Hz - Time: 0322Z - DXCC: 288 +[26-09-2024 10:22:58] INFO (** New Band **) DX: W7XP - Spotter: AC0C - Freq: 3527.0 - Band: 80M - Mode: CW - Comment: 23 dB 24 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:59] INFO DX: N5TJ - Spotter: IK4VET - Freq: 7037.2 - Band: 40M - Mode: CW - Comment: 17 dB 35 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:22:59] INFO (** New Band **) DX: 5H1WX - Spotter: IT9DDS - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - Time: 0322Z - DXCC: 470 +[26-09-2024 10:23:00] INFO (** New Band **) DX: W5XO - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 1189 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:00] INFO DX: AC6YY - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 790 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:01] INFO DX: KD6KHK - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 418 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:01] INFO DX: KR2Q - Spotter: HG8A - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 34 dB 37 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:01] INFO DX: N2IC - Spotter: HG8A - Freq: 7045.6 - Band: 40M - Mode: CW - Comment: 12 dB 35 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:02] INFO DX: NT6Q - Spotter: KM3T - Freq: 7034.3 - Band: 40M - Mode: CW - Comment: 36 dB 35 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:02] INFO DX: NA8V - Spotter: VE6AO - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 15 dB 38 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:03] INFO DX: K2YR - Spotter: DE1LON - Freq: 7044.9 - Band: 40M - Mode: CW - Comment: 6 dB 37 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:03] INFO DX: VE7ZO - Spotter: N7TUG - Freq: 7042.7 - Band: 40M - Mode: CW - Comment: 21 dB 35 WPM CQ - Time: 0322Z - DXCC: 1 +[26-09-2024 10:23:03] INFO DX: LZ1SJ - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1177 Hz - Time: 0322Z - DXCC: 212 +[26-09-2024 10:23:04] INFO (** New Band **) DX: UT8ER - Spotter: SV1CDN - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 16 dB 16 WPM CQ - Time: 0322Z - DXCC: 288 +[26-09-2024 10:23:04] INFO DX: N9UNX - Spotter: DM5GG - Freq: 7040.6 - Band: 40M - Mode: CW - Comment: 9 dB 35 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:05] INFO (** New Band **) DX: YR1400VT - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 1519 Hz - Time: 0322Z - DXCC: 275 +[26-09-2024 10:23:05] INFO DX: AH6KO - Spotter: KD2OGR - Freq: 14026.2 - Band: 20M - Mode: CW - Comment: 16 dB 34 WPM CQ - Time: 0322Z - DXCC: 110 +[26-09-2024 10:23:05] INFO (** New Band **) DX: DO1HJK - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1084 Hz - Time: 0322Z - DXCC: 230 +[26-09-2024 10:23:06] INFO DX: WJ9B - Spotter: KA7OEI - Freq: 7035.1 - Band: 40M - Mode: CW - Comment: 44 dB 35 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:06] INFO DX: K3MM - Spotter: KA7OEI - Freq: 7027.6 - Band: 40M - Mode: CW - Comment: 36 dB 34 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:07] INFO (** New Band **) DX: SM6F - Spotter: LZ3CB - Freq: 7030.4 - Band: 40M - Mode: CW - Comment: 4 dB 30 WPM CQ - Time: 0322Z - DXCC: 284 +[26-09-2024 10:23:07] INFO DX: VK5RM - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 2156 Hz - Time: 0322Z - DXCC: 150 +[26-09-2024 10:23:08] INFO DX: W8FJ - Spotter: G4ZFE - Freq: 7027.2 - Band: 40M - Mode: CW - Comment: 11 dB 42 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:08] INFO DX: WB0SND - Spotter: W3WHK - Freq: 7041.5 - Band: 40M - Mode: CW - Comment: - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:08] INFO DX: PY2KY - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1558 Hz - Time: 0322Z - DXCC: 108 +[26-09-2024 10:23:09] INFO DX: W7MD - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 1849 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:09] INFO DX: K8BB - Spotter: DC8YZ - Freq: 7034.7 - Band: 40M - Mode: CW - Comment: 17 dB 31 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:10] INFO DX: N4XTT - Spotter: DL8LAS - Freq: 7027.0 - Band: 40M - Mode: CW - Comment: 8 dB 34 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:10] INFO DX: K8PK - Spotter: K7CO - Freq: 7047.0 - Band: 40M - Mode: CW - Comment: 21 dB 30 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:10] INFO (** New Band **) DX: LU7HW - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2039 Hz - Time: 0322Z - DXCC: 100 +[26-09-2024 10:23:11] INFO DX: EA5HM - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 819 Hz - Time: 0322Z - DXCC: 281 +[26-09-2024 10:23:11] INFO DX: EA1AA - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1471 Hz - Time: 0322Z - DXCC: 281 +[26-09-2024 10:23:12] INFO DX: VE6CBZ - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1299 Hz - Time: 0322Z - DXCC: 1 +[26-09-2024 10:23:12] INFO DX: AC6ZM - Spotter: TI7W - Freq: 7036.5 - Band: 40M - Mode: CW - Comment: 30 dB 31 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:12] INFO (** Worked **) DX: WU6P - Spotter: TI7W - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 29 dB 38 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:12] INFO DX: WU6P - Spotter: TI7W - Freq: 14032.3 - Band: 20M - Mode: CW - Comment: 29 dB 38 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:13] INFO (** New Band **) DX: LW4EAZ - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2096 Hz - Time: 0322Z - DXCC: 100 +[26-09-2024 10:23:13] INFO DX: K4FN - Spotter: N6TV - Freq: 7035.6 - Band: 40M - Mode: CW - Comment: 9 dB 33 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:14] INFO DX: W5DM - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 713 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:14] INFO DX: N2NT - Spotter: ES2RR - Freq: 7029.5 - Band: 40M - Mode: CW - Comment: 21 dB 36 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:14] INFO (** New Band **) DX: 9A2GA - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +14 dB 380 Hz - Time: 0322Z - DXCC: 497 +[26-09-2024 10:23:15] INFO (** New Band **) DX: DO5HOK - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 1 dB 1315 Hz - Time: 0322Z - DXCC: 230 +[26-09-2024 10:23:15] INFO DX: RK6BA - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1401 Hz - Time: 0322Z - DXCC: 54 +[26-09-2024 10:23:16] INFO (** New Band **) DX: OK1RR - Spotter: F4GOU - Freq: 7031.3 - Band: 40M - Mode: CW - Comment: 38 dB 31 WPM CQ - Time: 0322Z - DXCC: 503 +[26-09-2024 10:23:16] INFO DX: N7US - Spotter: F4GOU - Freq: 7029.2 - Band: 40M - Mode: CW - Comment: 35 dB 37 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:16] INFO DX: KC2LSD - Spotter: W4KAZ - Freq: 7033.3 - Band: 40M - Mode: CW - Comment: 45 dB 33 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:17] INFO DX: AD8J - Spotter: OE6TZE - Freq: 7022.7 - Band: 40M - Mode: CW - Comment: 9 dB 32 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:17] INFO (** New Band **) DX: G8KHF - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 506 Hz - Time: 0322Z - DXCC: 223 +[26-09-2024 10:23:18] INFO (** New Band **) DX: KE5HDE - Spotter: VE3EID - Freq: 3563.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 2120 Hz - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:18] INFO DX: N2YO - Spotter: KH6LC - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 19 dB 39 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:19] INFO DX: VA3SB - Spotter: DL1HWS - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 8 dB 34 WPM CQ - Time: 0322Z - DXCC: 1 +[26-09-2024 10:23:19] INFO DX: W0ABE - Spotter: AA0O - Freq: 7046.3 - Band: 40M - Mode: CW - Comment: 12 dB 36 WPM CQ - Time: 0322Z - DXCC: 291 +[26-09-2024 10:23:19] INFO DX: K3WW - Spotter: HA1VHF - Freq: 7025.7 - Band: 40M - Mode: CW - Comment: 12 dB 39 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:20] INFO DX: K5UZ - Spotter: KM3T - Freq: 14029.7 - Band: 20M - Mode: CW - Comment: 18 dB 37 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:20] INFO (** New Band **) DX: AC8XI - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 5 dB 869 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:20] INFO (** New Band **) DX: N1KI - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 1 dB 1460 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:21] INFO (** New Band **) DX: VA7QI - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 432 Hz - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:21] INFO (** New Band **) DX: F5NNN - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1379 Hz - Time: 0323Z - DXCC: 227 +[26-09-2024 10:23:22] INFO (** New Band **) DX: 4Z4DX - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1991 Hz - Time: 0323Z - DXCC: 336 +[26-09-2024 10:23:22] INFO DX: AF0E - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +18 dB 848 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:22] INFO (** New Mode **) DX: RW3M - Spotter: RA3QTT - Freq: 1821.5 - Band: 17M - Mode: - Comment: cq - Time: 0322Z - DXCC: 54 +[26-09-2024 10:23:23] INFO DX: N2UU - Spotter: DE1LON - Freq: 7038.1 - Band: 40M - Mode: CW - Comment: 22 dB 33 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:23] INFO DX: KF5KWF - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 517 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:24] INFO DX: M7OT - Spotter: N7TUG - Freq: 14038.0 - Band: 20M - Mode: CW - Comment: 10 dB 31 WPM CQ - Time: 0323Z - DXCC: 223 +[26-09-2024 10:23:24] INFO DX: UA6EE - Spotter: YO2MAX - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: +11 dB 1594 Hz - Time: 0323Z - DXCC: 54 +[26-09-2024 10:23:24] INFO DX: CT2GQA - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 983 Hz - Time: 0323Z - DXCC: 272 +[26-09-2024 10:23:25] INFO (** New Band **) DX: HA1BF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 911 Hz - Time: 0323Z - DXCC: 239 +[26-09-2024 10:23:25] INFO DX: RN3GG - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1871 Hz - Time: 0323Z - DXCC: 54 +[26-09-2024 10:23:25] INFO (** New Mode **) DX: CO8LY - Spotter: K7EK - Freq: 10107.0 - Band: 30M - Mode: CW - Comment: 21 dB 21 WPM CQ - Time: 0323Z - DXCC: 70 +[26-09-2024 10:23:26] INFO DX: VK2WW - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 700 Hz - Time: 0323Z - DXCC: 150 +[26-09-2024 10:23:26] INFO (** New Band **) DX: KB8OTK - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: + 8 dB 544 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:27] INFO (** New Band **) DX: VE2OPR - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: + 8 dB 359 Hz - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:27] INFO DX: IK0HFO - Spotter: W3OA - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 331 Hz - Time: 0323Z - DXCC: 248 +[26-09-2024 10:23:27] INFO DX: OM0UA - Spotter: W3OA - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 963 Hz - Time: 0323Z - DXCC: 504 +[26-09-2024 10:23:28] INFO DX: KN6ZZI - Spotter: W3OA - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 3 dB 1031 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:28] INFO DX: K4IA - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1379 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:29] INFO DX: K2EDB - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +16 dB 1952 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:29] INFO DX: W3SW - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +13 dB 502 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:29] INFO (** New Band **) DX: YO9HP - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2259 Hz - Time: 0323Z - DXCC: 275 +[26-09-2024 10:23:30] INFO (** New Band **) DX: HB9HSJ - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1549 Hz - Time: 0323Z - DXCC: 287 +[26-09-2024 10:23:30] INFO DX: KD9ZQN - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 307 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:31] INFO DX: KE4DOZ - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 480 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:31] INFO DX: EA5R - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 2042 Hz - Time: 0323Z - DXCC: 281 +[26-09-2024 10:23:31] INFO (** New Band **) DX: LY2EW - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2781 Hz - Time: 0323Z - DXCC: 146 +[26-09-2024 10:23:32] INFO (** New Band **) DX: TA2EE - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 1461 Hz - Time: 0323Z - DXCC: 390 +[26-09-2024 10:23:32] INFO (** New Band **) DX: HB9HSN - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 1140 Hz - Time: 0323Z - DXCC: 287 +[26-09-2024 10:23:33] INFO DX: W1TO - Spotter: WA7LNW - Freq: 14037.0 - Band: 20M - Mode: CW - Comment: 17 dB 31 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:33] INFO (** New Band **) DX: KK7HXB - Spotter: N6TV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1604 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:33] INFO DX: VE3BZ - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1958 Hz - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:34] INFO DX: K0BHB - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2706 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:34] INFO (** New Band **) DX: G3WGC - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1250 Hz - Time: 0323Z - DXCC: 223 +[26-09-2024 10:23:34] INFO (** New Band **) DX: EA6BF - Spotter: ES2RR - Freq: 7031.7 - Band: 40M - Mode: CW - Comment: 19 dB 37 WPM CQ - Time: 0323Z - DXCC: 21 +[26-09-2024 10:23:35] INFO DX: K5TAR - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 299 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:35] INFO DX: WE9G - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 473 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:36] INFO DX: KE7NLT - Spotter: K9IMM - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1379 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:36] INFO (** New Band **) DX: F5JQF - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2992 Hz - Time: 0323Z - DXCC: 227 +[26-09-2024 10:23:36] INFO DX: K4TZ - Spotter: V51YJ - Freq: 7028.8 - Band: 40M - Mode: CW - Comment: 11 dB 37 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:37] INFO (** Worked **) DX: VE7ZO - Spotter: W4KAZ - Freq: 14034.2 - Band: 20M - Mode: CW - Comment: 30 dB 36 WPM CQ - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:37] INFO DX: VE7ZO - Spotter: W4KAZ - Freq: 14034.2 - Band: 20M - Mode: CW - Comment: 30 dB 36 WPM CQ - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:37] INFO DX: RA0AR - Spotter: UA4CC - Freq: 14012.1 - Band: 20M - Mode: CW - Comment: 5 dB 18 WPM CQ - Time: 0323Z - DXCC: 15 +[26-09-2024 10:23:38] INFO DX: KA6ZTU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1718 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:38] INFO DX: W7JET - Spotter: K0AF - Freq: 14037.8 - Band: 20M - Mode: CW - Comment: - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:38] INFO DX: N1RIP - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1290 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:39] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +21 dB 2620 Hz - Time: 0323Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:23:39] INFO DX: VE7LGP - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +25 dB 1447 Hz - Time: 0323Z - DXCC: 1 +[26-09-2024 10:23:40] INFO DX: AG6QV - Spotter: VE7CC - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -10 dB 1227 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:40] INFO DX: KG7IXX - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1937 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:41] INFO DX: N4PL - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 2391 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:41] INFO (** Worked **) DX: NR5O - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +16 dB 2163 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:41] INFO DX: NR5O - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +16 dB 2163 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:41] INFO DX: KO4DCR - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1510 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:42] INFO DX: W9CF - Spotter: K4PP - Freq: 14023.6 - Band: 20M - Mode: CW - Comment: 6 dB 35 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:42] INFO (** Worked **) DX: D2UY - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 186 Hz - Time: 0323Z - DXCC: 401 +[26-09-2024 10:23:42] INFO DX: D2UY - Spotter: K9LC - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 186 Hz - Time: 0323Z - DXCC: 401 +[26-09-2024 10:23:43] INFO DX: K6IT - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 753 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:43] INFO (** New Band **) DX: IZ8VYU - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1739 Hz - Time: 0323Z - DXCC: 248 +[26-09-2024 10:23:44] INFO DX: UN7NSA - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 798 Hz - Time: 0323Z - DXCC: 130 +[26-09-2024 10:23:44] INFO DX: UN7CL - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1592 Hz - Time: 0323Z - DXCC: 130 +[26-09-2024 10:23:44] INFO (** Worked **) DX: R8AU - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1250 Hz - Time: 0323Z - DXCC: 15 +[26-09-2024 10:23:44] INFO DX: R8AU - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1250 Hz - Time: 0323Z - DXCC: 15 +[26-09-2024 10:23:45] INFO DX: DJ1AA - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 2007 Hz - Time: 0323Z - DXCC: 230 +[26-09-2024 10:23:45] INFO DX: KG5U - Spotter: EA1URA - Freq: 14035.4 - Band: 20M - Mode: CW - Comment: 2 dB 29 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:46] INFO DX: N4BP - Spotter: JN1ILK - Freq: 14028.2 - Band: 20M - Mode: CW - Comment: 8 dB 30 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:46] INFO DX: W5MH - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 991 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:46] INFO (** Worked **) DX: UK8FF - Spotter: VU2PTT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 739 Hz - Time: 0323Z - DXCC: 292 +[26-09-2024 10:23:46] INFO DX: UK8FF - Spotter: VU2PTT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 739 Hz - Time: 0323Z - DXCC: 292 +[26-09-2024 10:23:47] INFO DX: KG9X - Spotter: DL0PF - Freq: 7031.1 - Band: 40M - Mode: CW - Comment: 19 dB 39 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:47] INFO DX: KC7V - Spotter: N8PE - Freq: 7039.1 - Band: 40M - Mode: CW - Comment: - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:48] INFO DX: KH7X - Spotter: VE6AO - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 10 dB 37 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:48] INFO (** New Band **) DX: MI0NWA - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 543 Hz - Time: 0323Z - DXCC: 265 +[26-09-2024 10:23:48] INFO (** New Mode **) DX: KP4GBF - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1502 Hz - Time: 0323Z - DXCC: 202 +[26-09-2024 10:23:49] INFO DX: N7NR - Spotter: DF2CK - Freq: 7038.3 - Band: 40M - Mode: CW - Comment: 14 dB 35 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:49] INFO DX: K0WA - Spotter: K3PA - Freq: 7037.8 - Band: 40M - Mode: CW - Comment: 26 dB 36 WPM CQ - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:49] INFO (** New Band **) DX: YO9HP - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 2042 Hz - Time: 0323Z - DXCC: 275 +[26-09-2024 10:23:50] INFO DX: K5IB - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 386 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:50] INFO (** New Band **) DX: CE8EIO - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2022 Hz - Time: 0323Z - DXCC: 112 +[26-09-2024 10:23:51] INFO DX: RV9CW - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1659 Hz - Time: 0323Z - DXCC: 15 +[26-09-2024 10:23:51] INFO DX: PY2ZA - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 455 Hz - Time: 0323Z - DXCC: 108 +[26-09-2024 10:23:51] INFO (** New Band **) DX: AA1BS - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +14 dB 1000 Hz - Time: 0323Z - DXCC: 291 +[26-09-2024 10:23:52] INFO (** New DXCC **) DX: J88IH - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 8 dB 949 Hz - Time: 0323Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:26:04] INFO config loaded. +[26-09-2024 10:26:04] INFO Callsign: XV9Q +[26-09-2024 10:26:04] INFO deleting existing database +[26-09-2024 10:26:04] INFO Opening SQLite database +[26-09-2024 10:26:04] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:26:04] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:26:04] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:26:04] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:26:05] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:26:05] INFO Found login prompt...sending callsign +[26-09-2024 10:26:07] INFO FT8 is on as defined in the config file +[26-09-2024 10:26:07] INFO Skimmer is on as defined in the config file +[26-09-2024 10:26:08] INFO DX: WJ4K - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2207 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:09] INFO (** New Band **) DX: YO6GLT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 906 Hz - Time: 0326Z - DXCC: 275 +[26-09-2024 10:26:09] INFO DX: AI7WP - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1852 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:09] INFO (** New Band **) DX: IZ8VYU - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 1840 Hz - Time: 0326Z - DXCC: 248 +[26-09-2024 10:26:10] INFO (** New Band **) DX: I0BYR - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2719 Hz - Time: 0326Z - DXCC: 248 +[26-09-2024 10:26:10] INFO DX: JK1ILA - Spotter: JN1ILK - Freq: 10128.0 - Band: 30M - Mode: CW - Comment: 12 dB 16 WPM CQ - Time: 0326Z - DXCC: 339 +[26-09-2024 10:26:11] INFO DX: WJ9B - Spotter: JN1ILK - Freq: 14032.5 - Band: 20M - Mode: CW - Comment: 10 dB 36 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:11] INFO DX: AB8MO - Spotter: WE9V - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 1715 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:11] INFO (** New Band **) DX: K4YT - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +12 dB 1611 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:12] INFO (** New DXCC **) DX: J88BTI - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1183 Hz - Time: 0326Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:26:12] INFO DX: KN4NOK - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 378 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:12] INFO DX: KA0BOJ - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1158 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:13] INFO (** New Band **) DX: F5JQF - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 2937 Hz - Time: 0326Z - DXCC: 227 +[26-09-2024 10:26:13] INFO DX: ZS6ZA - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1144 Hz - Time: 0326Z - DXCC: 462 +[26-09-2024 10:26:14] INFO DX: KO4ULY - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 967 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:14] INFO (** New Band **) DX: OE3DIA - Spotter: EA2RCF - Freq: 7024.8 - Band: 40M - Mode: CW - Comment: 18 dB 29 WPM CQ - Time: 0326Z - DXCC: 206 +[26-09-2024 10:26:14] INFO DX: NA8V - Spotter: WE9V - Freq: 7023.9 - Band: 40M - Mode: CW - Comment: 33 dB 37 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:15] INFO (** Worked **) DX: BI6NSL - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1617 Hz - Time: 0326Z - DXCC: 318 +[26-09-2024 10:26:15] INFO DX: BI6NSL - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1617 Hz - Time: 0326Z - DXCC: 318 +[26-09-2024 10:26:15] INFO DX: RA9UAD - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1469 Hz - Time: 0326Z - DXCC: 15 +[26-09-2024 10:26:15] INFO DX: JT1A - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 2338 Hz - Time: 0326Z - DXCC: 363 +[26-09-2024 10:26:16] INFO DX: UA9WOU - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2344 Hz - Time: 0326Z - DXCC: 15 +[26-09-2024 10:26:16] INFO DX: KR2Q - Spotter: DK9IP - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 9 dB 37 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:17] INFO (** New Band **) DX: DJ2MS - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 920 Hz - Time: 0326Z - DXCC: 230 +[26-09-2024 10:26:17] INFO DX: N3QE - Spotter: KD2OGR - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 29 dB 35 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:17] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 19 dB 22 WPM NCDXF BCN - Time: 0326Z - DXCC: 997 +[26-09-2024 10:26:18] INFO DX: K7FR - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1623 Hz - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:18] INFO DX: N2YO - Spotter: DC8YZ - Freq: 7028.1 - Band: 40M - Mode: CW - Comment: 14 dB 40 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:19] INFO DX: KO4VW - Spotter: W2NAF - Freq: 7033.7 - Band: 40M - Mode: CW - Comment: 35 dB 36 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:19] INFO DX: N2UU - Spotter: KM3T - Freq: 7038.1 - Band: 40M - Mode: CW - Comment: 29 dB 33 WPM CQ - Time: 0326Z - DXCC: 291 +[26-09-2024 10:26:19] INFO DX: IK0HFO - Spotter: G4IRN - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 690 Hz - Time: 0326Z - DXCC: 248 +[26-09-2024 10:26:20] INFO (** Worked **) DX: R8AU - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 829 Hz - Time: 0326Z - DXCC: 15 +[26-09-2024 10:26:20] INFO DX: R8AU - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 829 Hz - Time: 0326Z - DXCC: 15 +[26-09-2024 10:26:20] INFO (** New Band **) DX: YO9HP - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 2300 Hz - Time: 0326Z - DXCC: 275 +[26-09-2024 10:27:11] INFO config loaded. +[26-09-2024 10:27:11] INFO Callsign: XV9Q +[26-09-2024 10:27:11] INFO deleting existing database +[26-09-2024 10:27:11] INFO Opening SQLite database +[26-09-2024 10:27:11] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:27:11] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:27:11] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:27:11] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:27:11] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:27:12] INFO Found login prompt...sending callsign +[26-09-2024 10:27:14] INFO FT8 is on as defined in the config file +[26-09-2024 10:27:14] INFO Skimmer is on as defined in the config file +[26-09-2024 10:27:15] INFO DX: YT3D - Spotter: ZL4YL - Freq: 14013.0 - Band: 20M - Mode: CW - Comment: 28 dB 30 WPM CQ - Time: 0327Z - DXCC: 296 +[26-09-2024 10:27:15] INFO (** New Band **) DX: DL5DQZ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2051 Hz - Time: 0327Z - DXCC: 230 +[26-09-2024 10:27:16] INFO (** New Band **) DX: IK1OVY - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1068 Hz - Time: 0327Z - DXCC: 248 +[26-09-2024 10:27:16] INFO (** New Band **) DX: CA3TSK - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 2685 Hz - Time: 0327Z - DXCC: 112 +[26-09-2024 10:27:16] INFO DX: K3JT - Spotter: OK1FCJ - Freq: 7037.2 - Band: 40M - Mode: CW - Comment: 16 dB 34 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:17] INFO (** New Band **) DX: 9A2GA - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 1 dB 385 Hz - Time: 0327Z - DXCC: 497 +[26-09-2024 10:27:17] INFO (** New Band **) DX: LY2EW - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 825 Hz - Time: 0327Z - DXCC: 146 +[26-09-2024 10:27:18] INFO (** New Band **) DX: OE3DIA - Spotter: ZL3X - Freq: 7024.8 - Band: 40M - Mode: CW - Comment: 5 dB 29 WPM CQ - Time: 0327Z - DXCC: 206 +[26-09-2024 10:27:18] INFO DX: VA3SB - Spotter: K7CO - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 23 dB 33 WPM CQ - Time: 0327Z - DXCC: 1 +[26-09-2024 10:27:18] INFO DX: N4GO - Spotter: K7CO - Freq: 7043.7 - Band: 40M - Mode: CW - Comment: 25 dB 34 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:19] INFO DX: N2NT - Spotter: IK4VET - Freq: 7029.6 - Band: 40M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:19] INFO (** New Band **) DX: XE2FGC - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 1710 Hz - Time: 0327Z - DXCC: 50 +[26-09-2024 10:27:19] INFO DX: W5KGM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1511 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:20] INFO DX: K2PZB - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 205 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:20] INFO DX: KN4PPD - Spotter: W1NT - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1591 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:21] INFO DX: WA0I - Spotter: KH6LC - Freq: 14035.7 - Band: 20M - Mode: CW - Comment: 10 dB 31 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:21] INFO (** New Band **) DX: W2RLW - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 5 dB 1526 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:21] INFO (** New Band **) DX: W1WC - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1675 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:22] INFO DX: K4TZ - Spotter: OE9GHV - Freq: 7028.8 - Band: 40M - Mode: CW - Comment: 18 dB 40 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:22] INFO DX: KV0I - Spotter: KP3CW - Freq: 7033.9 - Band: 40M - Mode: CW - Comment: 25 dB 35 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:23] INFO DX: KR2Q - Spotter: K4PP - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 36 dB 37 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:23] INFO (** New Band **) DX: SM6F - Spotter: DL0PF - Freq: 7026.1 - Band: 40M - Mode: CW - Comment: 14 dB 30 WPM CQ - Time: 0327Z - DXCC: 284 +[26-09-2024 10:27:23] INFO DX: KE8WAV - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1779 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:40] INFO config loaded. +[26-09-2024 10:27:40] INFO Callsign: XV9Q +[26-09-2024 10:27:40] INFO deleting existing database +[26-09-2024 10:27:40] INFO Opening SQLite database +[26-09-2024 10:27:40] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:27:40] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:27:40] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:27:40] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:27:40] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:27:41] INFO Found login prompt...sending callsign +[26-09-2024 10:27:43] INFO FT8 is on as defined in the config file +[26-09-2024 10:27:43] INFO Skimmer is on as defined in the config file +[26-09-2024 10:27:44] INFO DX: N2NT - Spotter: MM3NDH - Freq: 7029.5 - Band: 40M - Mode: CW - Comment: 22 dB 38 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:44] INFO (** New Band **) DX: LY2J - Spotter: LZ5DI - Freq: 7022.3 - Band: 40M - Mode: CW - Comment: 27 dB 32 WPM CQ - Time: 0327Z - DXCC: 146 +[26-09-2024 10:27:44] INFO DX: N5TJ - Spotter: N7TUG - Freq: 7037.3 - Band: 40M - Mode: CW - Comment: 13 dB 34 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:45] INFO (** New Band **) DX: K4CAE - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1292 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:45] INFO DX: R100AR - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +18 dB 498 Hz - Time: 0327Z - DXCC: 54 +[26-09-2024 10:27:46] INFO DX: W6SPB - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2720 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:46] INFO DX: K4ZH - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 1360 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:46] INFO DX: N4QEP - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 726 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:47] INFO DX: W0PE - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2781 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:47] INFO DX: EA5R - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 1832 Hz - Time: 0327Z - DXCC: 281 +[26-09-2024 10:27:47] INFO DX: UT6IO - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 6 dB 1332 Hz - Time: 0327Z - DXCC: 288 +[26-09-2024 10:27:48] INFO DX: JH6HZH - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 2210 Hz - Time: 0327Z - DXCC: 339 +[26-09-2024 10:27:48] INFO DX: BA7BK - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 542 Hz - Time: 0327Z - DXCC: 318 +[26-09-2024 10:27:49] INFO (** New Band **) DX: UR5EOH - Spotter: SE5E - Freq: 7016.5 - Band: 40M - Mode: CW - Comment: 10 dB 13 WPM CQ - Time: 0327Z - DXCC: 288 +[26-09-2024 10:27:49] INFO DX: WD4OBP - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 975 Hz - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:50] INFO DX: N7NR - Spotter: K3PA - Freq: 7038.3 - Band: 40M - Mode: CW - Comment: 29 dB 37 WPM CQ - Time: 0327Z - DXCC: 291 +[26-09-2024 10:27:50] INFO (** New Band **) DX: S56KZ - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1053 Hz - Time: 0327Z - DXCC: 499 +[26-09-2024 10:27:50] INFO DX: PD1BER - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2208 Hz - Time: 0327Z - DXCC: 263 +[26-09-2024 10:28:56] INFO config loaded. +[26-09-2024 10:28:56] INFO Callsign: XV9Q +[26-09-2024 10:28:56] INFO deleting existing database +[26-09-2024 10:28:56] INFO Opening SQLite database +[26-09-2024 10:28:56] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:28:56] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:28:56] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:28:56] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:28:57] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:28:57] INFO Found login prompt...sending callsign +[26-09-2024 10:28:59] INFO FT8 is on as defined in the config file +[26-09-2024 10:28:59] INFO Skimmer is on as defined in the config file +[26-09-2024 10:29:00] INFO DX: AA4NP - Spotter: OE9GHV - Freq: 7024.5 - Band: 40M - Mode: CW - Comment: 12 dB 32 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:01] INFO DX: NT6Q - Spotter: K7CO - Freq: 14026.5 - Band: 20M - Mode: CW - Comment: 22 dB 37 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:01] INFO DX: K0WA - Spotter: K7CO - Freq: 7050.0 - Band: 40M - Mode: CW - Comment: 24 dB 32 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:01] INFO DX: NA8V - Spotter: K9IMM - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 11 dB 36 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:02] INFO (** New Band **) DX: IT9ORA - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 960 Hz - Time: 0328Z - DXCC: 248 +[26-09-2024 10:29:02] INFO DX: N9TK - Spotter: W1NT - Freq: 7041.0 - Band: 40M - Mode: CW - Comment: 27 dB 37 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:03] INFO DX: LZ1SJ - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1106 Hz - Time: 0328Z - DXCC: 212 +[26-09-2024 10:29:03] INFO DX: W7PCT - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 891 Hz - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:04] INFO DX: KD9ZQN - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 544 Hz - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:04] INFO (** New Band **) DX: IK3SSW - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +20 dB 2425 Hz - Time: 0328Z - DXCC: 248 +[26-09-2024 10:29:04] INFO (** New Band **) DX: G7RHF - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 2640 Hz - Time: 0328Z - DXCC: 223 +[26-09-2024 10:29:05] INFO DX: W4JET - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 791 Hz - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:05] INFO DX: VE6AX - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2355 Hz - Time: 0328Z - DXCC: 1 +[26-09-2024 10:29:06] INFO (** New Band **) DX: YO4GIY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 1560 Hz - Time: 0328Z - DXCC: 275 +[26-09-2024 10:29:06] INFO (** New Band **) DX: LZ5UY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 2423 Hz - Time: 0328Z - DXCC: 212 +[26-09-2024 10:29:07] INFO DX: CX3BPM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 714 Hz - Time: 0328Z - DXCC: 144 +[26-09-2024 10:29:07] INFO DX: VE6RST - Spotter: W1NT - Freq: 7037.9 - Band: 40M - Mode: CW - Comment: 25 dB 33 WPM CQ - Time: 0328Z - DXCC: 1 +[26-09-2024 10:29:07] INFO DX: W5BIB - Spotter: W1NT - Freq: 14047.0 - Band: 20M - Mode: CW - Comment: 27 dB 23 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:08] INFO DX: K3WJV - Spotter: K6FOD - Freq: 7033.1 - Band: 40M - Mode: CW - Comment: 21 dB 33 WPM CQ - Time: 0328Z - DXCC: 291 +[26-09-2024 10:29:08] INFO (** New Band **) DX: 4X1UF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 269 Hz - Time: 0329Z - DXCC: 336 +[26-09-2024 10:29:09] INFO DX: K8WWS - Spotter: DF2CK - Freq: 7041.8 - Band: 40M - Mode: CW - Comment: 11 dB 30 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:09] INFO DX: AD8J - Spotter: LZ3CB - Freq: 7022.8 - Band: 40M - Mode: CW - Comment: 31 dB 30 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:09] INFO DX: KC7V - Spotter: KM3T - Freq: 7039.1 - Band: 40M - Mode: CW - Comment: 26 dB 36 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:10] INFO (** New Band **) DX: LY2J - Spotter: DC8YZ - Freq: 7022.3 - Band: 40M - Mode: CW - Comment: 24 dB 32 WPM CQ - Time: 0329Z - DXCC: 146 +[26-09-2024 10:29:10] INFO DX: YT3D - Spotter: DC8YZ - Freq: 14013.0 - Band: 20M - Mode: CW - Comment: 14 dB 29 WPM CQ - Time: 0329Z - DXCC: 296 +[26-09-2024 10:29:11] INFO DX: N7NHS - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1187 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:11] INFO DX: R2XM - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1839 Hz - Time: 0329Z - DXCC: 54 +[26-09-2024 10:29:12] INFO (** New Band **) DX: DO2WAL - Spotter: YO2MAX - Freq: 3570.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 3860 Hz - Time: 0329Z - DXCC: 230 +[26-09-2024 10:29:12] INFO DX: VE3NE - Spotter: AI6O - Freq: 7035.6 - Band: 40M - Mode: CW - Comment: - Time: 0329Z - DXCC: 1 +[26-09-2024 10:29:12] INFO DX: N2IC - Spotter: W6YX - Freq: 7045.6 - Band: 40M - Mode: CW - Comment: 38 dB 37 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:13] INFO DX: K0QH - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +14 dB 1360 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:13] INFO DX: WS4ASE - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 1880 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:14] INFO DX: JG1IPZ - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1232 Hz - Time: 0329Z - DXCC: 339 +[26-09-2024 10:29:14] INFO DX: N7US - Spotter: HB9DCO - Freq: 7029.1 - Band: 40M - Mode: CW - Comment: 18 dB 37 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:15] INFO (** New Band **) DX: YR1400VT - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 7 dB 1540 Hz - Time: 0329Z - DXCC: 275 +[26-09-2024 10:29:15] INFO DX: UA6EE - Spotter: N6TV - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 208 Hz - Time: 0329Z - DXCC: 54 +[26-09-2024 10:29:15] INFO DX: K4ZXV - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1222 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:16] INFO DX: EA6BF - Spotter: W2NAF - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 4 dB 37 WPM CQ - Time: 0329Z - DXCC: 21 +[26-09-2024 10:29:16] INFO DX: K3WW - Spotter: ND7K - Freq: 7025.7 - Band: 40M - Mode: CW - Comment: 34 dB 38 WPM CQ - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:17] INFO DX: KD4CVB - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1477 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:17] INFO DX: R6YY - Spotter: KM3T - Freq: 10131.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1121 Hz - Time: 0329Z - DXCC: 54 +[26-09-2024 10:29:18] INFO DX: W2PAP - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +10 dB 1759 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:18] INFO DX: KW5CW - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 650 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:18] INFO DX: KD9YOO - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 872 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:19] INFO DX: W6SCS - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1420 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:19] INFO DX: KE2BYT - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1784 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:20] INFO DX: KI5UKI - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1615 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:20] INFO DX: AG5PM - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +21 dB 2046 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:20] INFO DX: K2L - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 2333 Hz - Time: 0329Z - DXCC: 291 +[26-09-2024 10:29:21] INFO (** New Mode **) DX: HP1DAV - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1727 Hz - Time: 0329Z - DXCC: 88 +[26-09-2024 10:30:59] INFO config loaded. +[26-09-2024 10:30:59] INFO Callsign: XV9Q +[26-09-2024 10:30:59] INFO deleting existing database +[26-09-2024 10:30:59] INFO Opening SQLite database +[26-09-2024 10:30:59] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:30:59] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:30:59] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:30:59] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:31:00] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:31:00] INFO Found login prompt...sending callsign +[26-09-2024 10:31:02] INFO FT8 is on as defined in the config file +[26-09-2024 10:31:02] INFO Skimmer is on as defined in the config file +[26-09-2024 10:31:03] INFO DX: N5NA - Spotter: NG7M - Freq: 7033.9 - Band: 40M - Mode: CW - Comment: 17 dB 35 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:03] INFO DX: N2IC - Spotter: VE5UO - Freq: 7045.5 - Band: 40M - Mode: CW - Comment: - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:04] INFO DX: N8PE - Spotter: W3OA - Freq: 7022.6 - Band: 40M - Mode: CW - Comment: 19 dB 32 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:04] INFO DX: N7US - Spotter: YO2MAX - Freq: 7029.1 - Band: 40M - Mode: CW - Comment: 15 dB 37 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:05] INFO (** New Band **) DX: LY2EW - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1003 Hz - Time: 0331Z - DXCC: 146 +[26-09-2024 10:31:05] INFO DX: AA2IL - Spotter: W1NT - Freq: 7044.5 - Band: 40M - Mode: CW - Comment: 22 dB 30 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:05] INFO (** New Band **) DX: DL1NKB - Spotter: W1NT - Freq: 3532.1 - Band: 80M - Mode: CW - Comment: 6 dB 26 WPM CQ - Time: 0331Z - DXCC: 230 +[26-09-2024 10:31:06] INFO DX: NT6Q - Spotter: K7CO - Freq: 7034.3 - Band: 40M - Mode: CW - Comment: 42 dB 38 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:06] INFO DX: N2YO - Spotter: K6FOD - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 21 dB 38 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:06] INFO DX: KO4VW - Spotter: K6FOD - Freq: 7033.6 - Band: 40M - Mode: CW - Comment: 25 dB 37 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:07] INFO DX: KH7X - Spotter: K6FOD - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 29 dB 36 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:07] INFO (** New DXCC **) DX: HI8RMQ - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 604 Hz - Time: 0331Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:31:07] INFO (** New Band **) DX: KN6MOS - Spotter: K9IMM - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 2196 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:08] INFO DX: W5TM - Spotter: ZS1NN - Freq: 7025.3 - Band: 40M - Mode: CW - Comment: 9 dB 39 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:08] INFO DX: N5RZ - Spotter: KH6LC - Freq: 7042.2 - Band: 40M - Mode: CW - Comment: 11 dB 40 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:09] INFO DX: NA8V - Spotter: KH6LC - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 9 dB 34 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:09] INFO DX: N7YY - Spotter: W9ILY - Freq: 14029.0 - Band: 20M - Mode: CW - Comment: - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:09] INFO (** New Band **) DX: LY2J - Spotter: MM3NDH - Freq: 7022.3 - Band: 40M - Mode: CW - Comment: 5 dB 32 WPM CQ - Time: 0331Z - DXCC: 146 +[26-09-2024 10:31:10] INFO DX: N3QE - Spotter: AC0C - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 4 dB 36 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:10] INFO (** New Band **) DX: IK3VUT - Spotter: OH4KA - Freq: 7027.9 - Band: 40M - Mode: CW - Comment: 36 dB 25 WPM CQ - Time: 0331Z - DXCC: 248 +[26-09-2024 10:31:10] INFO DX: K8WWS - Spotter: KM3T - Freq: 7041.8 - Band: 40M - Mode: CW - Comment: 23 dB 25 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:11] INFO DX: K3MM - Spotter: KD2OGR - Freq: 14027.9 - Band: 20M - Mode: CW - Comment: 6 dB 41 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:11] INFO DX: R100AR - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 509 Hz - Time: 0331Z - DXCC: 54 +[26-09-2024 10:31:12] INFO (** New Band **) DX: IW8BSR - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2006 Hz - Time: 0331Z - DXCC: 248 +[26-09-2024 10:31:12] INFO DX: N8KH - Spotter: DL1HWS - Freq: 7036.9 - Band: 40M - Mode: CW - Comment: 14 dB 33 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:12] INFO DX: KD9LSV - Spotter: W6YX - Freq: 7039.5 - Band: 40M - Mode: CW - Comment: 25 dB 31 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:13] INFO DX: KC7V - Spotter: KA7OEI - Freq: 7039.1 - Band: 40M - Mode: CW - Comment: 41 dB 38 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:13] INFO (** New Band **) DX: N2NT - Spotter: NN3RP - Freq: 3527.8 - Band: 80M - Mode: CW - Comment: 5 dB 37 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:14] INFO DX: UA6YW - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 1035 Hz - Time: 0331Z - DXCC: 54 +[26-09-2024 10:31:14] INFO DX: K0KW - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1617 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:15] INFO (** New DXCC **) DX: HK5R - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1259 Hz - Time: 0331Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:31:15] INFO (** New Band **) DX: F4WEJ - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 1500 Hz - Time: 0331Z - DXCC: 227 +[26-09-2024 10:31:15] INFO DX: K4ZH - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +10 dB 1423 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:16] INFO DX: KA2ADX - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 957 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:16] INFO (** New Band **) DX: UT8ER - Spotter: KM3T - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 14 dB 17 WPM CQ - Time: 0331Z - DXCC: 288 +[26-09-2024 10:31:17] INFO (** New Band **) DX: HB9IJC - Spotter: KM3T - Freq: 7005.0 - Band: 40M - Mode: CW - Comment: 21 dB 22 WPM CQ - Time: 0331Z - DXCC: 287 +[26-09-2024 10:31:17] INFO DX: KQ4POW - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2572 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:18] INFO DX: WJ9B - Spotter: N6TV - Freq: 7035.0 - Band: 40M - Mode: CW - Comment: 17 dB 37 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:18] INFO DX: K5LCL - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 562 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:18] INFO DX: KJ7LSM - Spotter: N6TV - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 1411 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:19] INFO DX: M7OT - Spotter: VE6AO - Freq: 14037.8 - Band: 20M - Mode: CW - Comment: 28 dB 31 WPM CQ - Time: 0331Z - DXCC: 223 +[26-09-2024 10:31:19] INFO DX: WA0I - Spotter: VE6AO - Freq: 14035.7 - Band: 20M - Mode: CW - Comment: 19 dB 31 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:20] INFO (** New Band **) DX: I0BYR - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 2626 Hz - Time: 0331Z - DXCC: 248 +[26-09-2024 10:31:20] INFO (** New Band **) DX: G3WGC - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1237 Hz - Time: 0331Z - DXCC: 223 +[26-09-2024 10:31:20] INFO DX: AG5PM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 2057 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:21] INFO DX: UA9WOU - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 2353 Hz - Time: 0331Z - DXCC: 15 +[26-09-2024 10:31:21] INFO (** New Band **) DX: UB3PAQ - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1514 Hz - Time: 0331Z - DXCC: 54 +[26-09-2024 10:31:22] INFO DX: K5TAR - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 301 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:22] INFO (** New Band **) DX: DO5HOK - Spotter: LZ4UX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -21 dB 1316 Hz - Time: 0331Z - DXCC: 230 +[26-09-2024 10:31:23] INFO (** New Band **) DX: OE3DIA - Spotter: DL0PF - Freq: 7024.8 - Band: 40M - Mode: CW - Comment: 20 dB 29 WPM CQ - Time: 0331Z - DXCC: 206 +[26-09-2024 10:31:23] INFO DX: RA4HL - Spotter: VU2CPL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1018 Hz - Time: 0331Z - DXCC: 54 +[26-09-2024 10:31:23] INFO (** New Band **) DX: YO4BEX - Spotter: DC8YZ - Freq: 7038.0 - Band: 40M - Mode: CW - Comment: 19 dB 31 WPM CQ - Time: 0331Z - DXCC: 275 +[26-09-2024 10:31:24] INFO (** New Band **) DX: KQ4RME - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1901 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:24] INFO DX: AA4NP - Spotter: DL8LAS - Freq: 7024.5 - Band: 40M - Mode: CW - Comment: 8 dB 32 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:25] INFO DX: AA7E - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 5 dB 1499 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:25] INFO DX: KA6BIM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1876 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:25] INFO DX: 9A4AA - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2179 Hz - Time: 0331Z - DXCC: 497 +[26-09-2024 10:31:26] INFO DX: RT6C - Spotter: SQ5OUO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1453 Hz - Time: 0331Z - DXCC: 54 +[26-09-2024 10:31:26] INFO DX: K3MM - Spotter: MM3NDH - Freq: 7027.6 - Band: 40M - Mode: CW - Comment: 8 dB 40 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:27] INFO DX: KG9X - Spotter: VE6JY - Freq: 7031.0 - Band: 40M - Mode: CW - Comment: 30 dB 39 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:27] INFO DX: K8BB - Spotter: VE6JY - Freq: 7034.7 - Band: 40M - Mode: CW - Comment: 37 dB 31 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:28] INFO DX: N5GLD - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 1313 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:28] INFO DX: N2IC - Spotter: VE7CC - Freq: 7045.6 - Band: 40M - Mode: CW - Comment: 10 dB 36 WPM CQ - Time: 0331Z - DXCC: 291 +[26-09-2024 10:31:28] INFO DX: KM6WBI - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2564 Hz - Time: 0331Z - DXCC: 291 +[26-09-2024 10:32:31] INFO config loaded. +[26-09-2024 10:32:31] INFO Callsign: XV9Q +[26-09-2024 10:32:31] INFO deleting existing database +[26-09-2024 10:32:31] INFO Opening SQLite database +[26-09-2024 10:32:31] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:32:31] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:32:31] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:32:31] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:32:31] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:32:32] INFO Found login prompt...sending callsign +[26-09-2024 10:32:34] INFO FT8 is on as defined in the config file +[26-09-2024 10:32:34] INFO Skimmer is on as defined in the config file +[26-09-2024 10:32:35] INFO (** New Band **) DX: HA6NL - Spotter: DC8YZ - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 21 dB 28 WPM CQ - Time: 0332Z - DXCC: 239 +[26-09-2024 10:32:35] INFO DX: N3AD - Spotter: K7EK - Freq: 14046.9 - Band: 20M - Mode: CW - Comment: 10 dB 40 WPM CQ - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:35] INFO DX: WS7L - Spotter: K7EK - Freq: 14041.9 - Band: 20M - Mode: CW - Comment: 8 dB 30 WPM CQ - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:36] INFO DX: KE4PWE - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 804 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:36] INFO (** New Band **) DX: YO4GIY - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1537 Hz - Time: 0332Z - DXCC: 275 +[26-09-2024 10:32:36] INFO (** New Band **) DX: S56KZ - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 977 Hz - Time: 0332Z - DXCC: 499 +[26-09-2024 10:32:37] INFO (** New Band **) DX: DL5DQZ - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2017 Hz - Time: 0332Z - DXCC: 230 +[26-09-2024 10:32:37] INFO DX: R2EC - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2531 Hz - Time: 0332Z - DXCC: 54 +[26-09-2024 10:32:37] INFO (** New Band **) DX: CD6SNT - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1082 Hz - Time: 0332Z - DXCC: 112 +[26-09-2024 10:32:38] INFO (** New Band **) DX: YO7LBX - Spotter: OH6BG - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1333 Hz - Time: 0332Z - DXCC: 275 +[26-09-2024 10:32:38] INFO DX: DL4FNE - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 2327 Hz - Time: 0332Z - DXCC: 230 +[26-09-2024 10:32:39] INFO DX: RU3DAB - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 712 Hz - Time: 0332Z - DXCC: 54 +[26-09-2024 10:32:39] INFO DX: RT6C - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +16 dB 1290 Hz - Time: 0332Z - DXCC: 54 +[26-09-2024 10:32:39] INFO DX: RX6DX - Spotter: OH6BG - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +21 dB 359 Hz - Time: 0332Z - DXCC: 54 +[26-09-2024 10:32:40] INFO DX: N3JT - Spotter: W3OA - Freq: 7026.6 - Band: 40M - Mode: CW - Comment: 20 dB 37 WPM CQ - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:40] INFO DX: KB0RFY - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 1394 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:40] INFO DX: W9NJY - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 938 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:41] INFO DX: K1LVA - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 341 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:41] INFO DX: IZ8DBJ - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1994 Hz - Time: 0332Z - DXCC: 248 +[26-09-2024 10:32:41] INFO DX: KA3IRT - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1320 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:42] INFO DX: R6FX - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 753 Hz - Time: 0332Z - DXCC: 54 +[26-09-2024 10:32:42] INFO (** New Band **) DX: SP8XGU - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1058 Hz - Time: 0332Z - DXCC: 269 +[26-09-2024 10:32:42] INFO (** New Band **) DX: F5NNN - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1408 Hz - Time: 0332Z - DXCC: 227 +[26-09-2024 10:32:43] INFO DX: N7NR - Spotter: W3OA - Freq: 7038.3 - Band: 40M - Mode: CW - Comment: 33 dB 37 WPM CQ - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:43] INFO DX: K5SMH - Spotter: NG7M - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -20 dB 1468 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:44] INFO DX: W8FSM - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1666 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:44] INFO DX: VE2OPC - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1050 Hz - Time: 0332Z - DXCC: 1 +[26-09-2024 10:32:44] INFO DX: KO4ZML - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 944 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:45] INFO DX: KK7CAI - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1015 Hz - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:45] INFO DX: K3MM - Spotter: ES2RR - Freq: 7027.5 - Band: 40M - Mode: CW - Comment: 24 dB 37 WPM CQ - Time: 0332Z - DXCC: 291 +[26-09-2024 10:32:45] INFO DX: RU9CK - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 662 Hz - Time: 0332Z - DXCC: 15 +[26-09-2024 10:32:46] INFO (** New Band **) DX: DK4SG - Spotter: W1NT - Freq: 7003.0 - Band: 40M - Mode: CW - Comment: 24 dB 25 WPM CQ - Time: 0332Z - DXCC: 230 +[26-09-2024 10:32:46] INFO DX: BG2LXX - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 1712 Hz - Time: 0332Z - DXCC: 318 +[26-09-2024 10:33:25] INFO config loaded. +[26-09-2024 10:33:25] INFO Callsign: XV9Q +[26-09-2024 10:33:25] INFO deleting existing database +[26-09-2024 10:33:25] INFO Opening SQLite database +[26-09-2024 10:33:25] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:33:25] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:33:25] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:33:25] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:33:26] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:33:26] INFO Found login prompt...sending callsign +[26-09-2024 10:33:28] INFO FT8 is on as defined in the config file +[26-09-2024 10:33:28] INFO Skimmer is on as defined in the config file +[26-09-2024 10:33:29] INFO (** Worked **) DX: UB9OEC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1991 Hz - Time: 0333Z - DXCC: 15 +[26-09-2024 10:33:29] INFO DX: UB9OEC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1991 Hz - Time: 0333Z - DXCC: 15 +[26-09-2024 10:33:29] INFO DX: N3AD - Spotter: DK3UA - Freq: 7031.5 - Band: 40M - Mode: CW - Comment: 10 dB 41 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:30] INFO DX: K4TZ - Spotter: K4PP - Freq: 7028.8 - Band: 40M - Mode: CW - Comment: 25 dB 38 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:30] INFO DX: K0LUZ - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 1760 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:30] INFO (** New Band **) DX: N4ZZ - Spotter: NG7M - Freq: 3530.0 - Band: 80M - Mode: CW - Comment: 9 dB 40 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:31] INFO (** New Band **) DX: VA3BOO - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1333 Hz - Time: 0333Z - DXCC: 1 +[26-09-2024 10:33:31] INFO DX: W8MEJ - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 100 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:32] INFO DX: K5ENG - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 1518 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:32] INFO DX: W3ZQI - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1381 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:32] INFO DX: N7NR - Spotter: NG7M - Freq: 7038.3 - Band: 40M - Mode: CW - Comment: 39 dB 37 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:33] INFO (** New Band **) DX: G7RHF - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 2662 Hz - Time: 0333Z - DXCC: 223 +[26-09-2024 10:33:33] INFO DX: NE1V - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1325 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:33] INFO (** New Band **) DX: OE6OCG - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 2316 Hz - Time: 0333Z - DXCC: 206 +[26-09-2024 10:33:34] INFO (** New Band **) DX: MM0HVU - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1650 Hz - Time: 0333Z - DXCC: 279 +[26-09-2024 10:33:34] INFO (** New Band **) DX: SM2LIY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1306 Hz - Time: 0333Z - DXCC: 284 +[26-09-2024 10:33:34] INFO DX: N8PE - Spotter: W1NT - Freq: 7022.6 - Band: 40M - Mode: CW - Comment: 29 dB 33 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:35] INFO DX: R100AR - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 758 Hz - Time: 0333Z - DXCC: 54 +[26-09-2024 10:33:35] INFO DX: KR2Q - Spotter: G4IRN - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 8 dB 36 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:36] INFO DX: NT6Q - Spotter: AC0C - Freq: 7034.3 - Band: 40M - Mode: CW - Comment: 38 dB 36 WPM CQ - Time: 0333Z - DXCC: 291 +[26-09-2024 10:33:36] INFO DX: N7GND - Spotter: K9IMM - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2297 Hz - Time: 0333Z - DXCC: 291 +[26-09-2024 10:34:17] INFO config loaded. +[26-09-2024 10:34:17] INFO Callsign: XV9Q +[26-09-2024 10:34:17] INFO deleting existing database +[26-09-2024 10:34:17] INFO Opening SQLite database +[26-09-2024 10:34:17] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:34:17] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:34:17] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:34:17] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:34:17] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:34:18] INFO Found login prompt...sending callsign +[26-09-2024 10:34:20] INFO FT8 is on as defined in the config file +[26-09-2024 10:34:20] INFO Skimmer is on as defined in the config file +[26-09-2024 10:34:21] INFO DX: VA3SB - Spotter: OK1FCJ - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 10 dB 32 WPM CQ - Time: 0334Z - DXCC: 1 +[26-09-2024 10:34:21] INFO DX: PY2ANY - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1745 Hz - Time: 0334Z - DXCC: 108 +[26-09-2024 10:34:21] INFO (** New Band **) DX: CT3MD - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 648 Hz - Time: 0334Z - DXCC: 256 +[26-09-2024 10:34:22] INFO (** New Band **) DX: W1HS - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +22 dB 744 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:22] INFO DX: KH7X - Spotter: W1NT - Freq: 7030.5 - Band: 40M - Mode: CW - Comment: 29 dB 35 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:23] INFO (** New Band **) DX: YT3PL - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +15 dB 2083 Hz - Time: 0334Z - DXCC: 296 +[26-09-2024 10:34:23] INFO DX: RN3GG - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1746 Hz - Time: 0334Z - DXCC: 54 +[26-09-2024 10:34:23] INFO DX: K2EDB - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1941 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:24] INFO DX: W0PE - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 2885 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:24] INFO DX: W5DMS - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 362 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:25] INFO DX: K5RG - Spotter: KO7SS - Freq: 7052.0 - Band: 40M - Mode: CW - Comment: 31 dB 20 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:25] INFO (** New Band **) DX: W5XO - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1189 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:26] INFO DX: NA8V - Spotter: NG7M - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 14 dB 37 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:45] INFO config loaded. +[26-09-2024 10:34:45] INFO Callsign: XV9Q +[26-09-2024 10:34:45] INFO deleting existing database +[26-09-2024 10:34:45] INFO Opening SQLite database +[26-09-2024 10:34:45] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:34:45] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:34:45] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:34:45] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:34:46] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:34:46] INFO Found login prompt...sending callsign +[26-09-2024 10:34:48] INFO FT8 is on as defined in the config file +[26-09-2024 10:34:48] INFO Skimmer is on as defined in the config file +[26-09-2024 10:34:49] INFO DX: W0SGC - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 704 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:50] INFO (** New Band **) DX: HA6NL - Spotter: OH4KA - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 9 dB 28 WPM CQ - Time: 0334Z - DXCC: 239 +[26-09-2024 10:34:50] INFO DX: NA8V - Spotter: OK1HRA - Freq: 7023.8 - Band: 40M - Mode: CW - Comment: 17 dB 38 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:50] INFO (** New Band **) DX: UR5EOH - Spotter: ES2RR - Freq: 7014.6 - Band: 40M - Mode: CW - Comment: 16 dB 14 WPM CQ - Time: 0334Z - DXCC: 288 +[26-09-2024 10:34:51] INFO (** New Band **) DX: EA6BF - Spotter: ES2RR - Freq: 7031.2 - Band: 40M - Mode: CW - Comment: 16 dB 36 WPM CQ - Time: 0334Z - DXCC: 21 +[26-09-2024 10:34:51] INFO (** New Band **) DX: IK3VUT - Spotter: S53WW - Freq: 7027.9 - Band: 40M - Mode: CW - Comment: 15 dB 24 WPM CQ - Time: 0334Z - DXCC: 248 +[26-09-2024 10:34:52] INFO DX: KR2Q - Spotter: KD2OGR - Freq: 7045.2 - Band: 40M - Mode: CW - Comment: 14 dB 36 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:52] INFO DX: WA2HRF - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 675 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:52] INFO DX: VE3NNT - Spotter: W3OA - Freq: 7031.5 - Band: 40M - Mode: CW - Comment: 36 dB 34 WPM CQ - Time: 0334Z - DXCC: 1 +[26-09-2024 10:34:53] INFO DX: KK7NUK - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 481 Hz - Time: 0334Z - DXCC: 291 +[26-09-2024 10:34:53] INFO (** New Band **) DX: G0KPH - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1713 Hz - Time: 0334Z - DXCC: 223 +[26-09-2024 10:34:54] INFO (** New Band **) DX: UR3LM - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2327 Hz - Time: 0334Z - DXCC: 288 +[26-09-2024 10:34:54] INFO DX: K3WJV - Spotter: K4PP - Freq: 7033.1 - Band: 40M - Mode: CW - Comment: 26 dB 34 WPM CQ - Time: 0334Z - DXCC: 291 +[26-09-2024 10:35:19] INFO config loaded. +[26-09-2024 10:35:19] INFO Callsign: XV9Q +[26-09-2024 10:35:19] INFO deleting existing database +[26-09-2024 10:35:19] INFO Opening SQLite database +[26-09-2024 10:35:19] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 10:35:19] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 10:35:19] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 10:35:19] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 10:35:19] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 10:35:20] INFO Found login prompt...sending callsign +[26-09-2024 10:35:22] INFO FT8 is on as defined in the config file +[26-09-2024 10:35:22] INFO Skimmer is on as defined in the config file +[26-09-2024 10:35:23] INFO DX: F6BLP - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1224 Hz - Time: 0335Z - DXCC: 227 +[26-09-2024 10:35:23] INFO DX: KW6M - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1704 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:23] INFO DX: OK1AMF - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1548 Hz - Time: 0335Z - DXCC: 503 +[26-09-2024 10:35:24] INFO DX: VE3ELL - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 1512 Hz - Time: 0335Z - DXCC: 1 +[26-09-2024 10:35:24] INFO DX: WB3JSZ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1464 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:25] INFO DX: AI7WP - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1833 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:25] INFO DX: KD2NF - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 717 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:25] INFO (** New Band **) DX: IT9ORA - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 982 Hz - Time: 0335Z - DXCC: 248 +[26-09-2024 10:35:26] INFO (** New DXCC **) DX: HI3K - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1263 Hz - Time: 0335Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:35:26] INFO DX: K0TG - Spotter: K3PA - Freq: 7041.4 - Band: 40M - Mode: CW - Comment: 27 dB 37 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:27] INFO DX: VE3XJX - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 550 Hz - Time: 0335Z - DXCC: 1 +[26-09-2024 10:35:27] INFO DX: KA6ZTU - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1540 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:27] INFO (** New Band **) DX: W8GJ - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1394 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:28] INFO (** New Band **) DX: MI0NWA - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 546 Hz - Time: 0335Z - DXCC: 265 +[26-09-2024 10:35:28] INFO DX: KM4SXE - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 535 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:29] INFO DX: RV6F - Spotter: HA8TKS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1525 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:29] INFO (** New Band **) DX: I1WXY - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 1801 Hz - Time: 0335Z - DXCC: 248 +[26-09-2024 10:35:29] INFO (** New Band **) DX: HB9IJC - Spotter: LZ4AE - Freq: 3515.0 - Band: 80M - Mode: CW - Comment: 25 dB 22 WPM CQ - Time: 0335Z - DXCC: 287 +[26-09-2024 10:35:30] INFO DX: HA2VR - Spotter: DL9GTB - Freq: 10132.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 857 Hz - Time: 0335Z - DXCC: 239 +[26-09-2024 10:35:30] INFO (** New Band **) DX: HB9IJC - Spotter: EA5WU - Freq: 3515.0 - Band: 80M - Mode: CW - Comment: 20 dB 22 WPM CQ - Time: 0335Z - DXCC: 287 +[26-09-2024 10:35:31] INFO DX: DF2NV - Spotter: DL9GTB - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -17 dB - Time: 0335Z - DXCC: 230 +[26-09-2024 10:35:31] INFO DX: DK2JP - Spotter: DL9GTB - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: + 8 dB 1858 Hz - Time: 0335Z - DXCC: 230 +[26-09-2024 10:35:32] INFO (** New Band **) DX: YR1400VT - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 1499 Hz - Time: 0335Z - DXCC: 275 +[26-09-2024 10:35:32] INFO (** New Band **) DX: EA1FCH - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +19 dB 629 Hz - Time: 0335Z - DXCC: 281 +[26-09-2024 10:35:32] INFO (** New Band **) DX: IK4LZH - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 4 dB 532 Hz - Time: 0335Z - DXCC: 248 +[26-09-2024 10:35:33] INFO (** New Band **) DX: HB9HSN - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 1431 Hz - Time: 0335Z - DXCC: 287 +[26-09-2024 10:35:33] INFO (** New Band **) DX: KQ4RME - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1941 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:34] INFO (** New Band **) DX: W1HS - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 747 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:34] INFO (** New Band **) DX: IN3TWX - Spotter: ET3AA - Freq: 7028.2 - Band: 40M - Mode: CW - Comment: 11 dB 27 WPM CQ - Time: 0335Z - DXCC: 248 +[26-09-2024 10:35:34] INFO DX: K3WW - Spotter: PA8MM - Freq: 7025.7 - Band: 40M - Mode: CW - Comment: 12 dB 35 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:35] INFO (** Worked **) DX: JH1DSX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 688 Hz - Time: 0335Z - DXCC: 339 +[26-09-2024 10:35:35] INFO DX: JH1DSX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 688 Hz - Time: 0335Z - DXCC: 339 +[26-09-2024 10:35:35] INFO DX: W7PCT - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1295 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:36] INFO (** New DXCC **) DX: HK6VXX - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1524 Hz - Time: 0335Z - Command: 0, FlexSpot: 0 +[26-09-2024 10:35:36] INFO DX: W7DTH - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1724 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:37] INFO DX: KO4VW - Spotter: N9CO - Freq: 7033.6 - Band: 40M - Mode: CW - Comment: 34 dB 31 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:37] INFO DX: AH6KO - Spotter: W6YX - Freq: 14026.2 - Band: 20M - Mode: CW - Comment: 48 dB 32 WPM CQ - Time: 0335Z - DXCC: 110 +[26-09-2024 10:35:38] INFO DX: WJ9B - Spotter: W6YX - Freq: 7035.1 - Band: 40M - Mode: CW - Comment: 26 dB 37 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:38] INFO DX: K3WJV - Spotter: TI7W - Freq: 7033.1 - Band: 40M - Mode: CW - Comment: 24 dB 32 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:38] INFO DX: KT5V - Spotter: K0HB - Freq: 7032.3 - Band: 40M - Mode: CW - Comment: - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:39] INFO DX: EA5HM - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 923 Hz - Time: 0335Z - DXCC: 281 +[26-09-2024 10:35:39] INFO DX: R5IS - Spotter: DF2CK - Freq: 7024.3 - Band: 40M - Mode: CW - Comment: 11 dB 24 WPM CQ - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:40] INFO DX: SV3AUW - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1353 Hz - Time: 0335Z - DXCC: 236 +[26-09-2024 10:35:40] INFO DX: R1CAP - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1906 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:40] INFO (** New Band **) DX: LY2EW - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 450 Hz - Time: 0335Z - DXCC: 146 +[26-09-2024 10:35:41] INFO DX: N4GO - Spotter: DC8YZ - Freq: 7043.7 - Band: 40M - Mode: CW - Comment: 17 dB 37 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:41] INFO DX: AC6ZM - Spotter: DC8YZ - Freq: 7036.5 - Band: 40M - Mode: CW - Comment: 20 dB 33 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:42] INFO DX: N4XTT - Spotter: DC8YZ - Freq: 7026.9 - Band: 40M - Mode: CW - Comment: 23 dB 37 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:42] INFO DX: K5GQ - Spotter: N1AU - Freq: 7037.6 - Band: 40M - Mode: CW - Comment: - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:43] INFO (** New Band **) DX: LZ5UY - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2468 Hz - Time: 0335Z - DXCC: 212 +[26-09-2024 10:35:43] INFO DX: NA6JD - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1687 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:43] INFO DX: VU2FR - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2500 Hz - Time: 0335Z - DXCC: 324 +[26-09-2024 10:35:44] INFO DX: R2SBI - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 389 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:44] INFO (** New Band **) DX: YO4GIY - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1604 Hz - Time: 0335Z - DXCC: 275 +[26-09-2024 10:35:45] INFO DX: UA4PT - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1701 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:45] INFO (** New Band **) DX: HB9HSJ - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1500 Hz - Time: 0335Z - DXCC: 287 +[26-09-2024 10:35:45] INFO (** New Band **) DX: 4X1UF - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 192 Hz - Time: 0335Z - DXCC: 336 +[26-09-2024 10:35:46] INFO DX: KB8ZIO - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1120 Hz - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:46] INFO DX: R2WAF - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1853 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:47] INFO (** New Band **) DX: EA1FCH - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 327 Hz - Time: 0335Z - DXCC: 281 +[26-09-2024 10:35:47] INFO (** New Band **) DX: UT2AU - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 951 Hz - Time: 0335Z - DXCC: 288 +[26-09-2024 10:35:47] INFO DX: R4ML - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 948 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:48] INFO DX: RV6LRE - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 1360 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 10:35:48] INFO (** New Band **) DX: I0BYR - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2650 Hz - Time: 0335Z - DXCC: 248 +[26-09-2024 10:35:49] INFO (** New Band **) DX: DL1STG - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 1135 Hz - Time: 0335Z - DXCC: 230 +[26-09-2024 10:35:49] INFO (** New Band **) DX: RA2FCF - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +13 dB 1552 Hz - Time: 0335Z - DXCC: 126 +[26-09-2024 10:35:50] INFO DX: LA2HFA - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 931 Hz - Time: 0335Z - DXCC: 266 +[26-09-2024 10:35:50] INFO (** New Mode **) DX: HP1DAV - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1761 Hz - Time: 0335Z - DXCC: 88 +[26-09-2024 10:35:50] INFO (** New Band **) DX: YO9HP - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2150 Hz - Time: 0335Z - DXCC: 275 +[26-09-2024 10:35:51] INFO DX: NT6Q - Spotter: WS2C - Freq: 7034.3 - Band: 40M - Mode: CW - Comment: 30 dB 36 WPM CQ - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:51] INFO DX: N7DX - Spotter: K7QA - Freq: 7033.4 - Band: 40M - Mode: CW - Comment: - Time: 0335Z - DXCC: 291 +[26-09-2024 10:35:52] INFO DX: CX2UI - Spotter: ZL4YL - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 6 dB 21 WPM CQ - Time: 0335Z - DXCC: 144 +[26-09-2024 10:35:52] INFO (** New Band **) DX: 4X5JR - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1263 Hz - Time: 0335Z - DXCC: 336 +[26-09-2024 10:35:53] INFO (** New Band **) DX: EA8FJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 619 Hz - Time: 0335Z - DXCC: 29 +[26-09-2024 10:35:53] INFO DX: CT2GQA - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +10 dB 1011 Hz - Time: 0335Z - DXCC: 272 +[26-09-2024 10:35:53] INFO DX: R1AI - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1241 Hz - Time: 0335Z - DXCC: 54 +[26-09-2024 12:11:30] INFO config loaded. +[26-09-2024 12:11:30] INFO Callsign: XV9Q +[26-09-2024 12:11:30] INFO deleting existing database +[26-09-2024 12:11:30] INFO Opening SQLite database +[26-09-2024 12:11:30] INFO telnet server listening on 0.0.0.0:7301 +[26-09-2024 12:11:30] INFO connected to flex radio at 10.10.10.120:4992 +[26-09-2024 12:11:30] INFO Subscribed to spot on FlexRadio and Deleted all spots from panadapter +[26-09-2024 12:11:30] INFO starting HTTP server on 0.0.0.0:3000 +[26-09-2024 12:11:30] INFO connected to DX cluster dxc.k0xm.net:7300 +[26-09-2024 12:11:31] INFO Found login prompt...sending callsign +[26-09-2024 12:11:33] INFO FT8 is on as defined in the config file +[26-09-2024 12:11:33] INFO Skimmer is on as defined in the config file +[26-09-2024 12:11:34] INFO DX: SP1TB - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +12 dB 1801 Hz - Time: 0511Z - DXCC: 269 +[26-09-2024 12:11:34] INFO DX: UA6HGM - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 862 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:35] INFO (** New Band **) DX: EA2CDY - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1057 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:11:35] INFO (** New Band **) DX: IK2QEI - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1338 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:36] INFO (** New Band **) DX: YO7CKQ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 632 Hz - Time: 0511Z - DXCC: 275 +[26-09-2024 12:11:36] INFO DX: UR5RP - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1805 Hz - Time: 0511Z - DXCC: 288 +[26-09-2024 12:11:37] INFO DX: IZ0DIB - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1872 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:37] INFO (** New Band **) DX: CE8EIO - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1764 Hz - Time: 0511Z - DXCC: 112 +[26-09-2024 12:11:37] INFO DX: IZ7NLJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 2255 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:38] INFO (** New Band **) DX: OE6OCG - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1634 Hz - Time: 0511Z - DXCC: 206 +[26-09-2024 12:11:38] INFO (** New Band **) DX: 9A3KG - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1682 Hz - Time: 0511Z - DXCC: 497 +[26-09-2024 12:11:39] INFO DX: UB9UCT - Spotter: DL8LAS - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -12 dB 1937 Hz - Time: 0511Z - DXCC: 15 +[26-09-2024 12:11:39] INFO DX: UA9SY - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1399 Hz - Time: 0511Z - DXCC: 15 +[26-09-2024 12:11:40] INFO DX: UN7QF - Spotter: RN4WA - Freq: 14017.0 - Band: 20M - Mode: CW - Comment: 23 dB 26 WPM CQ - Time: 0511Z - DXCC: 130 +[26-09-2024 12:11:40] INFO DX: W4MJH - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 397 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:40] INFO (** New Band **) DX: OE1SGU - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1630 Hz - Time: 0511Z - DXCC: 206 +[26-09-2024 12:11:41] INFO DX: VU2JCD - Spotter: VK6ANC - Freq: 28039.9 - Band: 10M - Mode: CW - Comment: 9 dB 25 WPM CQ - Time: 0511Z - DXCC: 324 +[26-09-2024 12:11:41] INFO DX: NU6V - Spotter: KO7SS - Freq: 7036.7 - Band: 40M - Mode: CW - Comment: 11 dB 24 WPM CQ - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:42] INFO (** New Band **) DX: EA5AYE - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1824 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:11:42] INFO DX: PD1AC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 1897 Hz - Time: 0511Z - DXCC: 263 +[26-09-2024 12:11:43] INFO (** New Band **) DX: IZ2EWN - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1280 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:43] INFO (** New Band **) DX: OT1V - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +11 dB 830 Hz - Time: 0511Z - DXCC: 209 +[26-09-2024 12:11:43] INFO DX: RA9ACA - Spotter: SM7IUN - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 1492 Hz - Time: 0511Z - DXCC: 15 +[26-09-2024 12:11:44] INFO DX: EA5HM - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 917 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:11:44] INFO (** New Band **) DX: EA3IMR - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2585 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:11:45] INFO DX: LU4AA - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 8 dB 22 WPM NCDXF BCN - Time: 0511Z - DXCC: 100 +[26-09-2024 12:11:45] INFO DX: KO4YIN - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1675 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:46] INFO DX: R4LBP - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 967 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:46] INFO DX: SP9LCW - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 2587 Hz - Time: 0511Z - DXCC: 269 +[26-09-2024 12:11:46] INFO (** New Band **) DX: EA5XC - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1247 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:11:47] INFO (** Worked **) DX: RU3QR - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1609 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:47] INFO DX: RU3QR - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1609 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:47] INFO (** New Band **) DX: DJ5IL - Spotter: OH4KA - Freq: 7024.0 - Band: 40M - Mode: CW - Comment: 20 dB 26 WPM CQ - Time: 0511Z - DXCC: 230 +[26-09-2024 12:11:48] INFO (** New Band **) DX: OA4DXZ - Spotter: KM3T - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 470 Hz - Time: 0511Z - DXCC: 136 +[26-09-2024 12:11:48] INFO (** New Band **) DX: DK7PE - Spotter: MM3NDH - Freq: 3510.0 - Band: 80M - Mode: CW - Comment: 18 dB 27 WPM CQ - Time: 0511Z - DXCC: 230 +[26-09-2024 12:11:48] INFO DX: IZ8VYU - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1790 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:49] INFO (** New Band **) DX: KX8X - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +12 dB 1596 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:49] INFO (** New Band **) DX: F5SJF - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 2293 Hz - Time: 0511Z - DXCC: 227 +[26-09-2024 12:11:50] INFO (** New Band **) DX: IU1TLG - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 997 Hz - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:50] INFO DX: LW1DYN - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 761 Hz - Time: 0511Z - DXCC: 100 +[26-09-2024 12:11:50] INFO DX: K1GJQ - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1344 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:51] INFO (** New Band **) DX: DK7PE - Spotter: DD5XX - Freq: 3510.0 - Band: 80M - Mode: CW - Comment: 46 dB 27 WPM CQ - Time: 0511Z - DXCC: 230 +[26-09-2024 12:11:51] INFO DX: DL250CDF - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1628 Hz - Time: 0511Z - DXCC: 230 +[26-09-2024 12:11:52] INFO DX: UA3SAO - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1076 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:52] INFO DX: SV1EMX - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2807 Hz - Time: 0511Z - DXCC: 236 +[26-09-2024 12:11:52] INFO (** New Band **) DX: HB9EFK - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 467 Hz - Time: 0511Z - DXCC: 287 +[26-09-2024 12:11:53] INFO DX: K2ZMM - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1201 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:53] INFO (** New Band **) DX: GJ0KYZ - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -21 dB 614 Hz - Time: 0511Z - DXCC: 122 +[26-09-2024 12:11:53] INFO (** New Band **) DX: F5PIO - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1515 Hz - Time: 0511Z - DXCC: 227 +[26-09-2024 12:11:54] INFO DX: JA8IDS - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 5 dB 1564 Hz - Time: 0511Z - DXCC: 339 +[26-09-2024 12:11:54] INFO DX: F8CGL - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +16 dB 1015 Hz - Time: 0511Z - DXCC: 227 +[26-09-2024 12:11:55] INFO DX: JT1YL - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 1725 Hz - Time: 0511Z - DXCC: 363 +[26-09-2024 12:11:55] INFO (** New Band **) DX: IK1UGX - Spotter: ZL3X - Freq: 7010.0 - Band: 40M - Mode: CW - Comment: 10 dB 26 WPM CQ - Time: 0511Z - DXCC: 248 +[26-09-2024 12:11:55] INFO (** New Band **) DX: HC5F - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 1833 Hz - Time: 0511Z - DXCC: 120 +[26-09-2024 12:11:56] INFO (** New Band **) DX: DK1AQ - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -14 dB 877 Hz - Time: 0511Z - DXCC: 230 +[26-09-2024 12:11:56] INFO DX: HB9HSN - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1089 Hz - Time: 0511Z - DXCC: 287 +[26-09-2024 12:11:57] INFO DX: SP2GK - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2492 Hz - Time: 0511Z - DXCC: 269 +[26-09-2024 12:11:57] INFO (** New Band **) DX: CT2HEX - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 850 Hz - Time: 0511Z - DXCC: 272 +[26-09-2024 12:11:57] INFO DX: RJ7M - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 2690 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:11:58] INFO DX: KO6PB - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1476 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:58] INFO DX: KJ4IHN - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 2709 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:11:59] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 18 dB 21 WPM NCDXF BCN - Time: 0511Z - DXCC: 997 +[26-09-2024 12:11:59] INFO (** New Band **) DX: 9A2DS - Spotter: YO5LD - Freq: 7007.1 - Band: 40M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0511Z - DXCC: 497 +[26-09-2024 12:11:59] INFO DX: EA4EQ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1327 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:12:00] INFO (** New Band **) DX: DJ7XY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1403 Hz - Time: 0511Z - DXCC: 230 +[26-09-2024 12:12:00] INFO DX: RX6ACR - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 2365 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:12:01] INFO DX: OK1ZCF - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 897 Hz - Time: 0511Z - DXCC: 503 +[26-09-2024 12:12:01] INFO DX: IZ2FME - Spotter: RU9CZD - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 24 dB 21 WPM CQ - Time: 0511Z - DXCC: 248 +[26-09-2024 12:12:01] INFO DX: RW3PL - Spotter: S50U - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 2345 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:12:02] INFO (** Worked **) DX: YB1JCD - Spotter: JN1ILK - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 13 dB 29 WPM CQ - Time: 0511Z - DXCC: 327 +[26-09-2024 12:12:02] INFO DX: YB1JCD - Spotter: JN1ILK - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 13 dB 29 WPM CQ - Time: 0511Z - DXCC: 327 +[26-09-2024 12:12:02] INFO (** New Band **) DX: UR4FY - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 739 Hz - Time: 0511Z - DXCC: 288 +[26-09-2024 12:12:03] INFO DX: W7RPS - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2826 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:03] INFO (** New Band **) DX: MM0DSP - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1262 Hz - Time: 0511Z - DXCC: 279 +[26-09-2024 12:12:03] INFO (** New Band **) DX: SV2HXV - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +28 dB 907 Hz - Time: 0511Z - DXCC: 236 +[26-09-2024 12:12:04] INFO (** New Band **) DX: HA9OA - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +12 dB 274 Hz - Time: 0511Z - DXCC: 239 +[26-09-2024 12:12:04] INFO (** New Band **) DX: MM0HVU - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1701 Hz - Time: 0511Z - DXCC: 279 +[26-09-2024 12:12:05] INFO DX: W7MD - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2048 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:05] INFO DX: EV1R - Spotter: HA8TKS - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 2375 Hz - Time: 0511Z - DXCC: 27 +[26-09-2024 12:12:05] INFO DX: KK7MUN - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1036 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:06] INFO DX: LZ1YP - Spotter: MW0MUT - Freq: 14019.0 - Band: 20M - Mode: CW - Comment: 7 dB 27 WPM CQ - Time: 0511Z - DXCC: 212 +[26-09-2024 12:12:06] INFO DX: SP5SZE - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -21 dB 1269 Hz - Time: 0511Z - DXCC: 269 +[26-09-2024 12:12:07] INFO (** Worked **) DX: US4IQ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1990 Hz - Time: 0511Z - DXCC: 288 +[26-09-2024 12:12:07] INFO DX: US4IQ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1990 Hz - Time: 0511Z - DXCC: 288 +[26-09-2024 12:12:07] INFO DX: UX4IT - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 2732 Hz - Time: 0511Z - DXCC: 288 +[26-09-2024 12:12:07] INFO DX: R7DX - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 2034 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:12:08] INFO DX: R100AR - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 676 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:12:08] INFO (** New Band **) DX: EA1FCH - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 282 Hz - Time: 0511Z - DXCC: 281 +[26-09-2024 12:12:09] INFO (** New Band **) DX: OZ1HYM - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 931 Hz - Time: 0511Z - DXCC: 221 +[26-09-2024 12:12:09] INFO (** New Band **) DX: DH5NC - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 1881 Hz - Time: 0511Z - DXCC: 230 +[26-09-2024 12:12:09] INFO (** New Band **) DX: CO8LY - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 1353 Hz - Time: 0511Z - DXCC: 70 +[26-09-2024 12:12:10] INFO DX: KK7DRL - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1180 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:10] INFO (** New Band **) DX: F5MXH - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1566 Hz - Time: 0511Z - DXCC: 227 +[26-09-2024 12:12:11] INFO DX: N7NHS - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 1088 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:11] INFO (** New Band **) DX: WK3A - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -20 dB 306 Hz - Time: 0511Z - DXCC: 291 +[26-09-2024 12:12:11] INFO (** New Band **) DX: F4HAB - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +18 dB 450 Hz - Time: 0511Z - DXCC: 227 +[26-09-2024 12:12:12] INFO DX: RA6WF - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2491 Hz - Time: 0511Z - DXCC: 54 +[26-09-2024 12:12:12] INFO (** New Band **) DX: HB9FBT - Spotter: LZ5DI - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0512Z - DXCC: 287 +[26-09-2024 12:12:13] INFO DX: RA3VGS - Spotter: R9IR - Freq: 14004.8 - Band: 20M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:13] INFO DX: RA3YAO - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1782 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:13] INFO DX: JI8AQC - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 1154 Hz - Time: 0512Z - DXCC: 339 +[26-09-2024 12:12:14] INFO DX: N6FMF - Spotter: W6YX - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:14] INFO DX: N6FMF - Spotter: ND7K - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 22 dB 20 WPM CQ - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:15] INFO (** New Band **) DX: SM5YOC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1564 Hz - Time: 0512Z - DXCC: 284 +[26-09-2024 12:12:15] INFO (** New Band **) DX: ES2AJ - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2025 Hz - Time: 0512Z - DXCC: 52 +[26-09-2024 12:12:15] INFO (** New Mode **) DX: NP3DM - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1554 Hz - Time: 0512Z - DXCC: 202 +[26-09-2024 12:12:16] INFO DX: WA6PPG - Spotter: WE9V - Freq: 14035.6 - Band: 20M - Mode: CW - Comment: 20 dB 13 WPM CQ - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:16] INFO DX: KK7OLA - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1037 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:17] INFO (** New Band **) DX: K4CAE - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1294 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:17] INFO (** New Band **) DX: MW7TTA - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 2120 Hz - Time: 0512Z - DXCC: 294 +[26-09-2024 12:12:17] INFO DX: K8BCO - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 1481 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:18] INFO DX: VE2OPC - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1092 Hz - Time: 0512Z - DXCC: 1 +[26-09-2024 12:12:18] INFO (** New Band **) DX: PY8WW - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 2213 Hz - Time: 0512Z - DXCC: 108 +[26-09-2024 12:12:19] INFO DX: SQ4CTS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1323 Hz - Time: 0512Z - DXCC: 269 +[26-09-2024 12:12:19] INFO (** New Band **) DX: 9A1CC - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 1190 Hz - Time: 0512Z - DXCC: 497 +[26-09-2024 12:12:19] INFO (** Worked **) DX: AG6X - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1941 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:19] INFO DX: AG6X - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1941 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:20] INFO (** New Band **) DX: F1MBL - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1573 Hz - Time: 0512Z - DXCC: 227 +[26-09-2024 12:12:20] INFO DX: N7NNZ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 405 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:21] INFO DX: R3YAR - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2134 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:21] INFO (** New Band **) DX: YL3BF - Spotter: DK0TE - Freq: 7030.2 - Band: 40M - Mode: CW - Comment: 13 dB 24 WPM CQ - Time: 0512Z - DXCC: 145 +[26-09-2024 12:12:21] INFO DX: PD1BER - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 2209 Hz - Time: 0512Z - DXCC: 263 +[26-09-2024 12:12:22] INFO DX: KF0IPD - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1058 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:22] INFO DX: K2PZB - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 397 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:22] INFO DX: XE1ACA - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 2044 Hz - Time: 0512Z - DXCC: 50 +[26-09-2024 12:12:23] INFO DX: W5XO - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1357 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:23] INFO DX: KJ4GK - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1905 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:24] INFO DX: R4IK - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +16 dB 1983 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:24] INFO DX: WA6PPG - Spotter: W8WWV - Freq: 14035.6 - Band: 20M - Mode: CW - Comment: 20 dB 13 WPM CQ - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:25] INFO (** Worked **) DX: RC5F - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1362 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:25] INFO DX: RC5F - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1362 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:25] INFO (** New DXCC **) DX: 4U1UN - Spotter: W6YX - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 43 dB 21 WPM NCDXF BCN - Time: 0512Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:12:25] INFO DX: W8AIT - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1153 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:26] INFO DX: ZL3GK - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1555 Hz - Time: 0512Z - DXCC: 170 +[26-09-2024 12:12:26] INFO (** New Band **) DX: KX8XX - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 9 dB 1943 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:27] INFO (** New Band **) DX: KF0HEG - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1331 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:27] INFO DX: 9A2AJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 478 Hz - Time: 0512Z - DXCC: 497 +[26-09-2024 12:12:27] INFO (** New Band **) DX: 9A2DS - Spotter: DF7GB - Freq: 7008.3 - Band: 40M - Mode: CW - Comment: 7 dB 23 WPM CQ - Time: 0512Z - DXCC: 497 +[26-09-2024 12:12:28] INFO (** Worked **) DX: V31DL - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 582 Hz - Time: 0512Z - DXCC: 66 +[26-09-2024 12:12:28] INFO DX: V31DL - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 582 Hz - Time: 0512Z - DXCC: 66 +[26-09-2024 12:12:28] INFO (** New Band **) DX: MM0KQC - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 2365 Hz - Time: 0512Z - DXCC: 279 +[26-09-2024 12:12:28] INFO (** New Band **) DX: KB8OTK - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1058 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:29] INFO (** New Band **) DX: WB5BHS - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 1859 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:29] INFO (** New Band **) DX: ON7HM - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 2063 Hz - Time: 0512Z - DXCC: 209 +[26-09-2024 12:12:30] INFO (** New Band **) DX: KC2VKD - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 1398 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:30] INFO DX: IC8TEM - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 2452 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:30] INFO DX: G0JNH - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1807 Hz - Time: 0512Z - DXCC: 223 +[26-09-2024 12:12:31] INFO DX: AD0K - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1470 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:31] INFO DX: W3UA - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1444 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:32] INFO (** New Band **) DX: F5POJ - Spotter: SE5E - Freq: 7037.0 - Band: 40M - Mode: CW - Comment: 33 dB 20 WPM CQ - Time: 0512Z - DXCC: 227 +[26-09-2024 12:12:32] INFO DX: N3GX - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +23 dB 1098 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:32] INFO (** New Band **) DX: LX1TI - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 958 Hz - Time: 0512Z - DXCC: 254 +[26-09-2024 12:12:33] INFO (** New Band **) DX: EC1D - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 1821 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:12:33] INFO (** New Band **) DX: G0KPH - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 573 Hz - Time: 0512Z - DXCC: 223 +[26-09-2024 12:12:33] INFO DX: OH2HOT - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 396 Hz - Time: 0512Z - DXCC: 224 +[26-09-2024 12:12:34] INFO (** New Band **) DX: IU8NKW - Spotter: YO2MAX - Freq: 3570.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 4017 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:34] INFO DX: KO4ZML - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1115 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:35] INFO DX: VK3MLT - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1219 Hz - Time: 0512Z - DXCC: 150 +[26-09-2024 12:12:35] INFO DX: PA0ARR - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1065 Hz - Time: 0512Z - DXCC: 263 +[26-09-2024 12:12:35] INFO DX: KD2YQS - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 616 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:36] INFO DX: A41CK - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1753 Hz - Time: 0512Z - DXCC: 370 +[26-09-2024 12:12:36] INFO DX: F1GPL - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2784 Hz - Time: 0512Z - DXCC: 227 +[26-09-2024 12:12:37] INFO DX: RV3ID - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +15 dB 1157 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:37] INFO DX: ON3URT - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 601 Hz - Time: 0512Z - DXCC: 209 +[26-09-2024 12:12:37] INFO DX: SP3WKW - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 2656 Hz - Time: 0512Z - DXCC: 269 +[26-09-2024 12:12:38] INFO DX: N3JHB - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 1513 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:38] INFO DX: E75W - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1335 Hz - Time: 0512Z - DXCC: 501 +[26-09-2024 12:12:39] INFO (** New Band **) DX: LZ5UY - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2434 Hz - Time: 0512Z - DXCC: 212 +[26-09-2024 12:12:39] INFO DX: SP3DOF - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 1612 Hz - Time: 0512Z - DXCC: 269 +[26-09-2024 12:12:39] INFO DX: UA3WG - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +13 dB 284 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:40] INFO (** New Band **) DX: F1PBZ - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 801 Hz - Time: 0512Z - DXCC: 227 +[26-09-2024 12:12:40] INFO (** New Band **) DX: IZ8GXE - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1198 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:40] INFO DX: 4Z1KN - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1648 Hz - Time: 0512Z - DXCC: 336 +[26-09-2024 12:12:41] INFO (** Worked **) DX: A41ZZ - Spotter: OE9GHV - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 852 Hz - Time: 0512Z - DXCC: 370 +[26-09-2024 12:12:41] INFO DX: A41ZZ - Spotter: OE9GHV - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 852 Hz - Time: 0512Z - DXCC: 370 +[26-09-2024 12:12:41] INFO (** New Band **) DX: EA1FCH - Spotter: K9IMM - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 670 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:12:42] INFO DX: LZ3AD - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 1400 Hz - Time: 0512Z - DXCC: 212 +[26-09-2024 12:12:42] INFO (** New Band **) DX: OH7BDI - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1856 Hz - Time: 0512Z - DXCC: 224 +[26-09-2024 12:12:42] INFO DX: W6WX - Spotter: N6TV - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 35 dB 22 WPM NCDXF BCN - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:43] INFO DX: R7DX - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2642 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:43] INFO DX: HA3FIC - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 1815 Hz - Time: 0512Z - DXCC: 239 +[26-09-2024 12:12:44] INFO DX: EW3DY - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2452 Hz - Time: 0512Z - DXCC: 27 +[26-09-2024 12:12:44] INFO DX: KS1A - Spotter: NG7M - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 437 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:44] INFO (** New Band **) DX: EA3CU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1104 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:12:45] INFO DX: KF0GE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 599 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:45] INFO DX: KS1A - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 760 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:46] INFO DX: VE3CGD - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 194 Hz - Time: 0512Z - DXCC: 1 +[26-09-2024 12:12:46] INFO (** New Band **) DX: HA3FMR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 2008 Hz - Time: 0512Z - DXCC: 239 +[26-09-2024 12:12:46] INFO (** New Band **) DX: DL6ZOG - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1065 Hz - Time: 0512Z - DXCC: 230 +[26-09-2024 12:12:47] INFO (** New Band **) DX: EA9ACF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 2940 Hz - Time: 0512Z - DXCC: 32 +[26-09-2024 12:12:47] INFO DX: IU1TKT - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 1877 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:48] INFO DX: EA8TL - Spotter: ZF1A - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -10 dB 934 Hz - Time: 0512Z - DXCC: 29 +[26-09-2024 12:12:48] INFO (** New Band **) DX: DJ1AA - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 1996 Hz - Time: 0512Z - DXCC: 230 +[26-09-2024 12:12:48] INFO (** New Band **) DX: OK4FX - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2777 Hz - Time: 0512Z - DXCC: 503 +[26-09-2024 12:12:49] INFO DX: E74K - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 2103 Hz - Time: 0512Z - DXCC: 501 +[26-09-2024 12:12:49] INFO DX: LZ6LZ - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2899 Hz - Time: 0512Z - DXCC: 212 +[26-09-2024 12:12:50] INFO DX: YO7BPC - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 687 Hz - Time: 0512Z - DXCC: 275 +[26-09-2024 12:12:50] INFO DX: EA7DHT - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 600 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:12:50] INFO (** New DXCC **) DX: J88BTI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1247 Hz - Time: 0512Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:12:51] INFO (** Worked **) DX: VK6WX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2183 Hz - Time: 0512Z - DXCC: 150 +[26-09-2024 12:12:51] INFO DX: VK6WX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2183 Hz - Time: 0512Z - DXCC: 150 +[26-09-2024 12:12:51] INFO DX: WA3MH - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +10 dB 1354 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:12:52] INFO DX: OK1LN - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 754 Hz - Time: 0512Z - DXCC: 503 +[26-09-2024 12:12:52] INFO (** New Band **) DX: ON2BID - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -23 dB 1474 Hz - Time: 0512Z - DXCC: 209 +[26-09-2024 12:12:52] INFO DX: RA0SCA - Spotter: SQ5OUO - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 1098 Hz - Time: 0512Z - DXCC: 15 +[26-09-2024 12:12:53] INFO DX: JR5PDV - Spotter: JN1ILK - Freq: 10128.0 - Band: 30M - Mode: CW - Comment: 20 dB 20 WPM CQ - Time: 0512Z - DXCC: 339 +[26-09-2024 12:12:53] INFO (** New Band **) DX: OH2CLX - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 1785 Hz - Time: 0512Z - DXCC: 224 +[26-09-2024 12:12:53] INFO DX: IK4TVP - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 615 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:54] INFO DX: SV3AUW - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 1281 Hz - Time: 0512Z - DXCC: 236 +[26-09-2024 12:12:54] INFO (** New Band **) DX: 4Z1TL - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1821 Hz - Time: 0512Z - DXCC: 336 +[26-09-2024 12:12:55] INFO DX: DL3OI - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 781 Hz - Time: 0512Z - DXCC: 230 +[26-09-2024 12:12:55] INFO DX: R1AV - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2324 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:55] INFO (** New Band **) DX: MI0OBC - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2449 Hz - Time: 0512Z - DXCC: 265 +[26-09-2024 12:12:56] INFO DX: R5BD - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 957 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:56] INFO DX: ES5NC - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 590 Hz - Time: 0512Z - DXCC: 52 +[26-09-2024 12:12:57] INFO DX: RU3X - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1384 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:12:57] INFO (** New Band **) DX: IK4HPS - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2615 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:12:57] INFO DX: SP8LM - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 1598 Hz - Time: 0512Z - DXCC: 269 +[26-09-2024 12:12:58] INFO (** New Band **) DX: OH6FSO - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 2612 Hz - Time: 0512Z - DXCC: 224 +[26-09-2024 12:12:58] INFO DX: SP5GRM - Spotter: F6KGL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1754 Hz - Time: 0512Z - DXCC: 269 +[26-09-2024 12:12:58] INFO DX: US5IIK - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1837 Hz - Time: 0512Z - DXCC: 288 +[26-09-2024 12:12:59] INFO (** New Band **) DX: EA5D - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1011 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:12:59] INFO (** New Band **) DX: F5CKQ - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1968 Hz - Time: 0512Z - DXCC: 227 +[26-09-2024 12:13:00] INFO (** New Band **) DX: IK4LZH - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 388 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:13:00] INFO DX: K4ZH - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1521 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:00] INFO (** New Band **) DX: CA3TSK - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 2654 Hz - Time: 0512Z - DXCC: 112 +[26-09-2024 12:13:01] INFO (** New Band **) DX: EC3A - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 1268 Hz - Time: 0512Z - DXCC: 281 +[26-09-2024 12:13:01] INFO (** Worked **) DX: RU3FM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1454 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:13:01] INFO DX: RU3FM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1454 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:13:02] INFO DX: KG4JPL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 2484 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:02] INFO DX: VA2RB - Spotter: TI7W - Freq: 14015.0 - Band: 20M - Mode: CW - Comment: 21 dB 21 WPM CQ - Time: 0512Z - DXCC: 1 +[26-09-2024 12:13:02] INFO (** New Band **) DX: ON3SLK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -22 dB 833 Hz - Time: 0512Z - DXCC: 209 +[26-09-2024 12:13:03] INFO DX: N3UL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 449 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:03] INFO DX: N1NRL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1391 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:04] INFO (** Worked **) DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 339 Hz - Time: 0512Z - DXCC: 401 +[26-09-2024 12:13:04] INFO DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 339 Hz - Time: 0512Z - DXCC: 401 +[26-09-2024 12:13:04] INFO (** New Band **) DX: 2E0EPB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1717 Hz - Time: 0512Z - DXCC: 223 +[26-09-2024 12:13:04] INFO DX: KG6PH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 364 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:05] INFO DX: SP2FAP - Spotter: DD5XX - Freq: 10107.6 - Band: 30M - Mode: CW - Comment: 24 dB 22 WPM CQ - Time: 0512Z - DXCC: 269 +[26-09-2024 12:13:05] INFO (** New Band **) DX: IU5NWT - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +14 dB 2065 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:13:06] INFO DX: SP2FAP - Spotter: LZ5DI - Freq: 10107.5 - Band: 30M - Mode: CW - Comment: 22 dB 22 WPM CQ - Time: 0512Z - DXCC: 269 +[26-09-2024 12:13:06] INFO DX: VA2RB - Spotter: ZL3X - Freq: 14015.0 - Band: 20M - Mode: CW - Comment: 10 dB 21 WPM CQ - Time: 0512Z - DXCC: 1 +[26-09-2024 12:13:06] INFO DX: W6WX - Spotter: VE7CC - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 13 dB 22 WPM NCDXF BCN - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:07] INFO DX: WI7P - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 2336 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:07] INFO DX: AA4EU - Spotter: HA1VHF - Freq: 14007.8 - Band: 20M - Mode: CW - Comment: 11 dB 47 WPM CQ - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:08] INFO (** New Band **) DX: CD6SNT - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1153 Hz - Time: 0512Z - DXCC: 112 +[26-09-2024 12:13:08] INFO DX: JA8IER - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2446 Hz - Time: 0512Z - DXCC: 339 +[26-09-2024 12:13:08] INFO (** New Band **) DX: CT3MD - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 4 dB 639 Hz - Time: 0512Z - DXCC: 256 +[26-09-2024 12:13:09] INFO DX: ZL6B - Spotter: KM3T - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 11 dB 21 WPM NCDXF BCN - Time: 0512Z - DXCC: 170 +[26-09-2024 12:13:09] INFO (** New DXCC **) DX: HI8R - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +20 dB 1767 Hz - Time: 0512Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:13:10] INFO DX: AA6AA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 1537 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:10] INFO (** New Band **) DX: IW3IEH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1172 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:13:10] INFO DX: RN3GG - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1853 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:13:11] INFO (** New Band **) DX: VA7LDT - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1257 Hz - Time: 0512Z - DXCC: 1 +[26-09-2024 12:13:11] INFO (** New Band **) DX: DK3TNA - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 1772 Hz - Time: 0512Z - DXCC: 230 +[26-09-2024 12:13:12] INFO (** New DXCC **) DX: YS1JFE - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1686 Hz - Time: 0512Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:13:12] INFO (** New Band **) DX: EA9PB - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -21 dB 1231 Hz - Time: 0512Z - DXCC: 32 +[26-09-2024 12:13:12] INFO (** New Band **) DX: LY3PW - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1324 Hz - Time: 0512Z - DXCC: 146 +[26-09-2024 12:13:13] INFO DX: UA3IKI - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1940 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:13:13] INFO DX: RZ3DUB - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 965 Hz - Time: 0512Z - DXCC: 54 +[26-09-2024 12:13:14] INFO DX: KH6RS - Spotter: KA7OEI - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 12 dB 22 WPM NCDXF BCN - Time: 0512Z - DXCC: 110 +[26-09-2024 12:13:14] INFO DX: KG4JPL - Spotter: EA5D - Freq: 7075.0 - Band: 40M - Mode: FT8 - Comment: -06 JN00BB<>EL88 - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:14] INFO DX: IW3BYL - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1639 Hz - Time: 0512Z - DXCC: 248 +[26-09-2024 12:13:15] INFO (** New Band **) DX: PZ1EW - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 940 Hz - Time: 0512Z - DXCC: 140 +[26-09-2024 12:13:15] INFO (** New Band **) DX: VE6CV - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1557 Hz - Time: 0512Z - DXCC: 1 +[26-09-2024 12:13:15] INFO (** Worked **) DX: BD6RN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1945 Hz - Time: 0512Z - DXCC: 318 +[26-09-2024 12:13:15] INFO DX: BD6RN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1945 Hz - Time: 0512Z - DXCC: 318 +[26-09-2024 12:13:16] INFO DX: N3GX - Spotter: EA3CU - Freq: 7074.0 - Band: 40M - Mode: CW - Comment: DXCC 291 FFMA FM16 VUCC FM1 - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:16] INFO DX: KG5FBP - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 971 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:17] INFO DX: K6IRK - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1576 Hz - Time: 0512Z - DXCC: 291 +[26-09-2024 12:13:17] INFO (** New DXCC **) DX: 4V1SAVANNAH - Spotter: W1NT - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 833 Hz - Time: 0512Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:13:17] INFO (** New Band **) DX: G8IXM - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 864 Hz - Time: 0513Z - DXCC: 223 +[26-09-2024 12:13:18] INFO DX: KN6UDK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 914 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:18] INFO DX: JA2GW - Spotter: 7N4XCV - Freq: 7008.6 - Band: 40M - Mode: CW - Comment: 29 dB 25 WPM CQ - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:19] INFO DX: JA2GW - Spotter: JK1QLQ - Freq: 7008.5 - Band: 40M - Mode: CW - Comment: 17 dB 25 WPM CQ - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:19] INFO DX: ZR1ADI - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2258 Hz - Time: 0513Z - DXCC: 462 +[26-09-2024 12:13:19] INFO (** New Band **) DX: K1LEC - Spotter: K9LC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 1429 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:20] INFO DX: WS1N - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +15 dB 1936 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:20] INFO DX: VE7SZ - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 2075 Hz - Time: 0513Z - DXCC: 1 +[26-09-2024 12:13:21] INFO DX: YO2MD - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1256 Hz - Time: 0513Z - DXCC: 275 +[26-09-2024 12:13:21] INFO (** New Band **) DX: S55G - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 406 Hz - Time: 0513Z - DXCC: 499 +[26-09-2024 12:13:21] INFO (** Worked **) DX: IK4LZH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 286 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:21] INFO DX: IK4LZH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 286 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:22] INFO DX: JH6CDI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1737 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:22] INFO DX: R6BY - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -13 dB 1011 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:23] INFO DX: DL3RAJ - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 2035 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:23] INFO (** New Band **) DX: DL5DQZ - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 2096 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:23] INFO DX: UA3SAQ - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1140 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:24] INFO (** New Band **) DX: S580ITFC - Spotter: MM3NDH - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 19 dB 22 WPM CQ - Time: 0513Z - DXCC: 499 +[26-09-2024 12:13:24] INFO DX: BG7EJL - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 949 Hz - Time: 0513Z - DXCC: 318 +[26-09-2024 12:13:25] INFO DX: WA7GIJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 1183 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:25] INFO (** New Band **) DX: DO1DAH - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 1237 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:25] INFO DX: SP2BWI - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1603 Hz - Time: 0513Z - DXCC: 269 +[26-09-2024 12:13:26] INFO DX: SP6AXW - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2216 Hz - Time: 0513Z - DXCC: 269 +[26-09-2024 12:13:26] INFO DX: PC6HELL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 1045 Hz - Time: 0513Z - DXCC: 263 +[26-09-2024 12:13:26] INFO (** New Band **) DX: M0JUE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 627 Hz - Time: 0513Z - DXCC: 223 +[26-09-2024 12:13:27] INFO (** New Band **) DX: OH3DJP - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2187 Hz - Time: 0513Z - DXCC: 224 +[26-09-2024 12:13:27] INFO DX: RW3TY - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 7 dB 1942 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:28] INFO DX: UT6QX - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 555 Hz - Time: 0513Z - DXCC: 288 +[26-09-2024 12:13:28] INFO DX: TA2EE - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1474 Hz - Time: 0513Z - DXCC: 390 +[26-09-2024 12:13:28] INFO (** Worked **) DX: BI6NSL - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -15 dB 1312 Hz - Time: 0513Z - DXCC: 318 +[26-09-2024 12:13:28] INFO DX: BI6NSL - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -15 dB 1312 Hz - Time: 0513Z - DXCC: 318 +[26-09-2024 12:13:29] INFO (** Worked **) DX: RZ3DCJ - Spotter: F6KGL - Freq: 14010.0 - Band: 20M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:29] INFO DX: RZ3DCJ - Spotter: F6KGL - Freq: 14010.0 - Band: 20M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:29] INFO (** New Band **) DX: N6RW - Spotter: VE7CC - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 988 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:30] INFO DX: LU8EMI - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 607 Hz - Time: 0513Z - DXCC: 100 +[26-09-2024 12:13:30] INFO (** Worked **) DX: F5PIO - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1799 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:13:30] INFO DX: F5PIO - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1799 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:13:30] INFO (** Worked **) DX: RZ3DCJ - Spotter: DM5GG - Freq: 14010.0 - Band: 20M - Mode: CW - Comment: 2 dB 23 WPM CQ - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:30] INFO DX: RZ3DCJ - Spotter: DM5GG - Freq: 14010.0 - Band: 20M - Mode: CW - Comment: 2 dB 23 WPM CQ - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:31] INFO DX: TA4SSK - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 2429 Hz - Time: 0513Z - DXCC: 390 +[26-09-2024 12:13:31] INFO DX: IU1PZC - Spotter: OH4KA - Freq: 10110.0 - Band: 30M - Mode: CW - Comment: 23 dB 18 WPM CQ - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:32] INFO (** New Band **) DX: KF6LYF - Spotter: NG7M - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1318 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:32] INFO DX: ZL4KYH - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 2347 Hz - Time: 0513Z - DXCC: 170 +[26-09-2024 12:13:32] INFO DX: AA9GE - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -15 dB 486 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:33] INFO (** New DXCC **) DX: J88IH - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 947 Hz - Time: 0513Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:13:33] INFO DX: W8FSM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 693 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:34] INFO (** New Band **) DX: 9A1AR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 2289 Hz - Time: 0513Z - DXCC: 497 +[26-09-2024 12:13:34] INFO (** New Band **) DX: EB3CJR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1396 Hz - Time: 0513Z - DXCC: 281 +[26-09-2024 12:13:34] INFO DX: SP7XIF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1756 Hz - Time: 0513Z - DXCC: 269 +[26-09-2024 12:13:35] INFO (** New Band **) DX: DJ7GS - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2071 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:35] INFO (** New Band **) DX: HB9BEM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 2212 Hz - Time: 0513Z - DXCC: 287 +[26-09-2024 12:13:35] INFO DX: SV8JVM - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 0 dB 1042 Hz - Time: 0513Z - DXCC: 236 +[26-09-2024 12:13:36] INFO DX: PA5KK - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 1744 Hz - Time: 0513Z - DXCC: 263 +[26-09-2024 12:13:36] INFO (** New DXCC **) DX: 7R8RR - Spotter: S50U - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -22 dB 961 Hz - Time: 0513Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:13:37] INFO DX: IU1PZC - Spotter: LZ5DI - Freq: 10110.0 - Band: 30M - Mode: CW - Comment: 23 dB 18 WPM CQ - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:37] INFO (** New Band **) DX: HB9HSJ - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 1407 Hz - Time: 0513Z - DXCC: 287 +[26-09-2024 12:13:37] INFO DX: SV3EAO - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 2277 Hz - Time: 0513Z - DXCC: 236 +[26-09-2024 12:13:38] INFO DX: R6JAG - Spotter: SQ5OUO - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 335 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:38] INFO DX: KE9BGK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1837 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:39] INFO DX: KB6JFL - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 2254 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:39] INFO DX: W3UNO - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 748 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:40] INFO (** New Band **) DX: YO8DHA - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 1471 Hz - Time: 0513Z - DXCC: 275 +[26-09-2024 12:13:40] INFO DX: SV9CAF - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 5 dB 2114 Hz - Time: 0513Z - DXCC: 40 +[26-09-2024 12:13:40] INFO (** New Band **) DX: IT9IVU - Spotter: EA5RQ - Freq: 7029.0 - Band: 40M - Mode: CW - Comment: 22 dB 25 WPM CQ - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:41] INFO DX: IK7XGH - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1584 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:41] INFO DX: IK0AGU - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 2444 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:42] INFO DX: RU0LL - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 6 dB 1342 Hz - Time: 0513Z - DXCC: 15 +[26-09-2024 12:13:42] INFO (** Worked **) DX: JA7GVE - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1862 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:42] INFO DX: JA7GVE - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1862 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:42] INFO DX: RA6MQ - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1834 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:43] INFO DX: EA4EQ - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1280 Hz - Time: 0513Z - DXCC: 281 +[26-09-2024 12:13:43] INFO (** New Band **) DX: DL7TCW - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1326 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:44] INFO (** Worked **) DX: JA6CPQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 637 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:44] INFO DX: JA6CPQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 637 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:44] INFO DX: VE7SZ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2127 Hz - Time: 0513Z - DXCC: 1 +[26-09-2024 12:13:44] INFO (** New Band **) DX: DL6WO - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1001 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:45] INFO DX: SV2BWY - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 518 Hz - Time: 0513Z - DXCC: 236 +[26-09-2024 12:13:45] INFO (** New Band **) DX: HC1HC - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 1732 Hz - Time: 0513Z - DXCC: 120 +[26-09-2024 12:13:46] INFO DX: KB8SRX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1822 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:46] INFO (** New Band **) DX: G8KHF - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 593 Hz - Time: 0513Z - DXCC: 223 +[26-09-2024 12:13:46] INFO DX: SV9ANK - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +20 dB 1958 Hz - Time: 0513Z - DXCC: 40 +[26-09-2024 12:13:47] INFO (** New Band **) DX: ZL2BX - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 797 Hz - Time: 0513Z - DXCC: 170 +[26-09-2024 12:13:47] INFO DX: W4IHQ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1190 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:47] INFO (** New Band **) DX: F6FHZ - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2553 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:13:48] INFO (** New Band **) DX: IU0RBF - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 742 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:48] INFO DX: NE1V - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1431 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:49] INFO DX: EW8OM - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1366 Hz - Time: 0513Z - DXCC: 27 +[26-09-2024 12:13:49] INFO DX: YU3TA - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2221 Hz - Time: 0513Z - DXCC: 296 +[26-09-2024 12:13:49] INFO DX: RO6G - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 2427 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:50] INFO DX: RA3MU - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1350 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:50] INFO DX: KA4JRY - Spotter: K9IMM - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -10 dB 1282 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:51] INFO DX: RR9O - Spotter: DL8LAS - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 9 dB 21 WPM NCDXF BCN - Time: 0513Z - DXCC: 997 +[26-09-2024 12:13:51] INFO DX: RW6HP - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1854 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:51] INFO DX: 9A4ZM - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1818 Hz - Time: 0513Z - DXCC: 497 +[26-09-2024 12:13:52] INFO (** New Mode **) DX: YV4MJP - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 3019 Hz - Time: 0513Z - DXCC: 148 +[26-09-2024 12:13:52] INFO DX: F6FDY - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1560 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:13:53] INFO DX: IZ0MIT - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2106 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:53] INFO (** New Band **) DX: YO6LM - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1268 Hz - Time: 0513Z - DXCC: 275 +[26-09-2024 12:13:53] INFO (** New Band **) DX: EA5JFO - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1084 Hz - Time: 0513Z - DXCC: 281 +[26-09-2024 12:13:54] INFO (** New Band **) DX: EA8SG - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 490 Hz - Time: 0513Z - DXCC: 29 +[26-09-2024 12:13:54] INFO (** New Band **) DX: YO5COG - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 740 Hz - Time: 0513Z - DXCC: 275 +[26-09-2024 12:13:55] INFO DX: RK2M - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: + 0 dB 1766 Hz - Time: 0513Z - DXCC: 54 +[26-09-2024 12:13:55] INFO DX: SP5AA - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -11 dB 2231 Hz - Time: 0513Z - DXCC: 269 +[26-09-2024 12:13:55] INFO DX: R8KAN - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2917 Hz - Time: 0513Z - DXCC: 15 +[26-09-2024 12:13:56] INFO DX: YB1BB - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -18 dB 2416 Hz - Time: 0513Z - DXCC: 327 +[26-09-2024 12:13:56] INFO DX: JH2KUF - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1343 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:13:57] INFO (** New Band **) DX: F8AEJ - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 2538 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:13:57] INFO (** New Band **) DX: DL9SFE - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 1876 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:13:57] INFO (** New Band **) DX: IW2DNI - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -11 dB 2345 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:13:58] INFO DX: LZ3FX - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 2748 Hz - Time: 0513Z - DXCC: 212 +[26-09-2024 12:13:58] INFO (** New Band **) DX: MM7DAH - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 2044 Hz - Time: 0513Z - DXCC: 279 +[26-09-2024 12:13:59] INFO DX: YB9GAN - Spotter: HA8TKS - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 1818 Hz - Time: 0513Z - DXCC: 327 +[26-09-2024 12:13:59] INFO DX: WA2HIP - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2581 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:13:59] INFO (** New Band **) DX: F4IIX - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 377 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:14:00] INFO (** New Band **) DX: DL4JG - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1758 Hz - Time: 0513Z - DXCC: 230 +[26-09-2024 12:14:00] INFO (** New Band **) DX: EC7R - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1851 Hz - Time: 0513Z - DXCC: 281 +[26-09-2024 12:14:01] INFO DX: K7CAR - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1678 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:01] INFO DX: KJ5DYS - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1326 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:01] INFO DX: WV1T - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 793 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:02] INFO DX: KK7CAI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1300 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:02] INFO (** New Band **) DX: ON4STA - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 1892 Hz - Time: 0513Z - DXCC: 209 +[26-09-2024 12:14:03] INFO DX: JN1XVA - Spotter: VU2PTT - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -19 dB 1991 Hz - Time: 0513Z - DXCC: 339 +[26-09-2024 12:14:03] INFO DX: EV1R - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 2760 Hz - Time: 0513Z - DXCC: 27 +[26-09-2024 12:14:03] INFO DX: NA6JD - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1183 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:04] INFO (** New Band **) DX: F4FSY - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1424 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:14:04] INFO DX: N4NJJ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2066 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:05] INFO (** New Band **) DX: 5P1KZX - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 2683 Hz - Time: 0513Z - DXCC: 221 +[26-09-2024 12:14:05] INFO (** New Band **) DX: F4JIH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1875 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:14:05] INFO DX: KG9Z - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1713 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:06] INFO DX: N9WLF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 782 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:06] INFO (** New Band **) DX: F5NNN - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 1125 Hz - Time: 0513Z - DXCC: 227 +[26-09-2024 12:14:06] INFO DX: IU8LLQ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1597 Hz - Time: 0513Z - DXCC: 248 +[26-09-2024 12:14:07] INFO (** New Band **) DX: OK2UQE - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1151 Hz - Time: 0513Z - DXCC: 503 +[26-09-2024 12:14:07] INFO DX: SP3MS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1562 Hz - Time: 0513Z - DXCC: 269 +[26-09-2024 12:14:08] INFO (** New Band **) DX: KM0PAR - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 962 Hz - Time: 0513Z - DXCC: 291 +[26-09-2024 12:14:08] INFO DX: LB6FG - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 2195 Hz - Time: 0513Z - DXCC: 266 +[26-09-2024 12:14:08] INFO DX: EA1AA - Spotter: SM7IUN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 1578 Hz - Time: 0513Z - DXCC: 281 +[26-09-2024 12:14:09] INFO DX: VK8VF - Spotter: VK2GEL - Freq: 28268.0 - Band: 10M - Mode: CW - Comment: 2 dB 15 WPM BEACON - Time: 0513Z - DXCC: 150 +[26-09-2024 12:14:09] INFO (** New Band **) DX: OM0ACE - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 524 Hz - Time: 0513Z - DXCC: 504 +[26-09-2024 12:14:10] INFO (** New Band **) DX: EB3CJR - Spotter: KD2YQS - Freq: 7075.4 - Band: 40M - Mode: FT8 - Comment: - Time: 0514Z - DXCC: 281 +[26-09-2024 12:14:10] INFO DX: W7PHG - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 2153 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:10] INFO DX: FG4NO - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -21 dB 1811 Hz - Time: 0514Z - DXCC: 79 +[26-09-2024 12:14:11] INFO (** New Band **) DX: ZR1ADI - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2423 Hz - Time: 0514Z - DXCC: 462 +[26-09-2024 12:14:11] INFO (** New Band **) DX: F4LOU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1045 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:12] INFO (** New Band **) DX: DL1KEA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1911 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:12] INFO (** New Band **) DX: SM5DGE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1779 Hz - Time: 0514Z - DXCC: 284 +[26-09-2024 12:14:12] INFO DX: 4Z5IW - Spotter: YO2MAX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: + 7 dB 553 Hz - Time: 0514Z - DXCC: 336 +[26-09-2024 12:14:13] INFO DX: N7PWZ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 965 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:13] INFO (** New Band **) DX: Z32LM - Spotter: ZL4YL - Freq: 7011.3 - Band: 40M - Mode: CW - Comment: 13 dB 16 WPM CQ - Time: 0514Z - DXCC: 502 +[26-09-2024 12:14:14] INFO DX: RM8W - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 752 Hz - Time: 0514Z - DXCC: 15 +[26-09-2024 12:14:14] INFO DX: S50UA - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 248 Hz - Time: 0514Z - DXCC: 499 +[26-09-2024 12:14:14] INFO DX: 4X6TU - Spotter: LZ4AE - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 18 dB 20 WPM NCDXF BCN - Time: 0514Z - DXCC: 997 +[26-09-2024 12:14:15] INFO (** New Band **) DX: IW8CGX - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1145 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:15] INFO (** New Band **) DX: IK2SYK - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1015 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:16] INFO (** New Band **) DX: KP2B - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +14 dB 787 Hz - Time: 0514Z - DXCC: 285 +[26-09-2024 12:14:16] INFO DX: AK7VV - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2116 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:16] INFO (** New Band **) DX: DG3BZ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 868 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:17] INFO DX: VK2KJJ - Spotter: VK6ANC - Freq: 14011.0 - Band: 20M - Mode: CW - Comment: 11 dB 23 WPM CQ - Time: 0514Z - DXCC: 150 +[26-09-2024 12:14:17] INFO DX: YD8CXQ - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1428 Hz - Time: 0514Z - DXCC: 327 +[26-09-2024 12:14:18] INFO DX: N0IDX - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1435 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:18] INFO (** New Band **) DX: ON4BN - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2423 Hz - Time: 0514Z - DXCC: 209 +[26-09-2024 12:14:18] INFO DX: S57EA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 2118 Hz - Time: 0514Z - DXCC: 499 +[26-09-2024 12:14:19] INFO (** Worked **) DX: UX3HX - Spotter: HA8TKS - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -20 dB 1129 Hz - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:19] INFO DX: UX3HX - Spotter: HA8TKS - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -20 dB 1129 Hz - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:19] INFO DX: NU6V - Spotter: K9LC - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 12 dB 23 WPM CQ - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:20] INFO DX: JH1WFS - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1175 Hz - Time: 0514Z - DXCC: 339 +[26-09-2024 12:14:20] INFO DX: K6KWV - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1157 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:20] INFO DX: VK3LGQ - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 2787 Hz - Time: 0514Z - DXCC: 150 +[26-09-2024 12:14:21] INFO DX: PA5KS - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -22 dB 774 Hz - Time: 0514Z - DXCC: 263 +[26-09-2024 12:14:21] INFO DX: 4X6TU - Spotter: DM5GG - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 17 dB 22 WPM NCDXF BCN - Time: 0514Z - DXCC: 997 +[26-09-2024 12:14:22] INFO DX: KA1MXL - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 2466 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:22] INFO (** New Band **) DX: IK2CIK - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 2416 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:22] INFO (** New Band **) DX: F4HAB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 426 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:23] INFO DX: LZ2XF - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2419 Hz - Time: 0514Z - DXCC: 212 +[26-09-2024 12:14:23] INFO DX: WO0DED - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 1105 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:23] INFO DX: WB7DRU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 721 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:24] INFO (** New Band **) DX: ON3DVT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 2805 Hz - Time: 0514Z - DXCC: 209 +[26-09-2024 12:14:24] INFO DX: K5HDU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 2684 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:25] INFO DX: DL3ADI - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 743 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:25] INFO DX: M6YIK - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1307 Hz - Time: 0514Z - DXCC: 223 +[26-09-2024 12:14:25] INFO DX: DK1VD - Spotter: RK3TD - Freq: 14036.3 - Band: 20M - Mode: CW - Comment: 33 dB 26 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:26] INFO (** New Band **) DX: KF0LHO - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 900 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:26] INFO DX: TA1CM - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 1925 Hz - Time: 0514Z - DXCC: 390 +[26-09-2024 12:14:27] INFO (** New Band **) DX: IT9JYF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 1742 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:27] INFO DX: W5JWM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 693 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:27] INFO DX: SP5LST - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1916 Hz - Time: 0514Z - DXCC: 269 +[26-09-2024 12:14:28] INFO DX: KQ4OTE - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1617 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:28] INFO (** Worked **) DX: IK5PWQ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 2090 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:28] INFO DX: IK5PWQ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 2090 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:29] INFO DX: I2XCH - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 2489 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:29] INFO (** Worked **) DX: K7CTV - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2082 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:29] INFO DX: K7CTV - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2082 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:29] INFO (** New Band **) DX: HA7LJ - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 2183 Hz - Time: 0514Z - DXCC: 239 +[26-09-2024 12:14:30] INFO (** New Band **) DX: 9A2GA - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 361 Hz - Time: 0514Z - DXCC: 497 +[26-09-2024 12:14:30] INFO (** New Band **) DX: YR1400VT - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 1520 Hz - Time: 0514Z - DXCC: 275 +[26-09-2024 12:14:31] INFO DX: YO6OGW - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1951 Hz - Time: 0514Z - DXCC: 275 +[26-09-2024 12:14:31] INFO DX: LZ1KGR - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1132 Hz - Time: 0514Z - DXCC: 212 +[26-09-2024 12:14:31] INFO (** New Band **) DX: YO4NT - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 1493 Hz - Time: 0514Z - DXCC: 275 +[26-09-2024 12:14:32] INFO DX: UT3UZ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +17 dB 1125 Hz - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:32] INFO (** New Band **) DX: DK7ZT - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 8 dB 1453 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:33] INFO DX: RX3VF - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1151 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:33] INFO DX: IK5VLL - Spotter: RN4WA - Freq: 14035.9 - Band: 20M - Mode: CW - Comment: 17 dB 28 WPM CQ - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:33] INFO DX: SV1FJP - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 2665 Hz - Time: 0514Z - DXCC: 236 +[26-09-2024 12:14:34] INFO (** New Band **) DX: DK8IT - Spotter: LZ3CB - Freq: 7021.0 - Band: 40M - Mode: CW - Comment: 15 dB 23 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:34] INFO DX: DK1VD - Spotter: LZ3CB - Freq: 14036.3 - Band: 20M - Mode: CW - Comment: 17 dB 25 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:35] INFO (** Worked **) DX: BG8TFN - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 1625 Hz - Time: 0514Z - DXCC: 318 +[26-09-2024 12:14:35] INFO DX: BG8TFN - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 1625 Hz - Time: 0514Z - DXCC: 318 +[26-09-2024 12:14:35] INFO DX: EA5LD - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 2038 Hz - Time: 0514Z - DXCC: 281 +[26-09-2024 12:14:35] INFO DX: IK5VLL - Spotter: RU9CZD - Freq: 14035.7 - Band: 20M - Mode: CW - Comment: 29 dB 28 WPM CQ - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:36] INFO DX: K4QAL - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1724 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:36] INFO DX: JI5UDJ - Spotter: JJ2VLY - Freq: 14068.1 - Band: 20M - Mode: CW - Comment: 26 dB 17 WPM CQ - Time: 0514Z - DXCC: 339 +[26-09-2024 12:14:37] INFO DX: W5JWM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 680 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:37] INFO DX: W5BIB - Spotter: KM3T - Freq: 10122.0 - Band: 30M - Mode: CW - Comment: 10 dB 23 WPM CQ - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:37] INFO (** New Band **) DX: F4BKT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 760 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:38] INFO (** New Band **) DX: DL6CHF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1391 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:38] INFO (** New Band **) DX: HB40OK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1884 Hz - Time: 0514Z - DXCC: 287 +[26-09-2024 12:14:39] INFO DX: W5BIB - Spotter: W1NT - Freq: 10122.0 - Band: 30M - Mode: CW - Comment: 7 dB 23 WPM CQ - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:39] INFO (** New Band **) DX: DK8IT - Spotter: EA5WU - Freq: 7021.0 - Band: 40M - Mode: CW - Comment: 23 dB 23 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:39] INFO DX: SP5AA - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 7 dB 2020 Hz - Time: 0514Z - DXCC: 269 +[26-09-2024 12:14:40] INFO DX: R3YAR - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 1685 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:40] INFO DX: 5P7F - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 1742 Hz - Time: 0514Z - DXCC: 221 +[26-09-2024 12:14:40] INFO (** New Band **) DX: DL5JH - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 2434 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:41] INFO DX: LZ2VQ - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +13 dB 381 Hz - Time: 0514Z - DXCC: 212 +[26-09-2024 12:14:41] INFO DX: UR4QWW - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 1600 Hz - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:42] INFO DX: RN5M - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1999 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:42] INFO DX: UT3UNE - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -11 dB 2129 Hz - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:42] INFO DX: LZ2XF - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -10 dB 1499 Hz - Time: 0514Z - DXCC: 212 +[26-09-2024 12:14:43] INFO DX: TA2EJ - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +14 dB - Time: 0514Z - DXCC: 390 +[26-09-2024 12:14:43] INFO DX: EW4M - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 2492 Hz - Time: 0514Z - DXCC: 27 +[26-09-2024 12:14:44] INFO DX: R7WA - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 1070 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:44] INFO DX: UA9LP - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 2122 Hz - Time: 0514Z - DXCC: 15 +[26-09-2024 12:14:44] INFO DX: SP3DSC - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2038 Hz - Time: 0514Z - DXCC: 269 +[26-09-2024 12:14:45] INFO DX: A41DV - Spotter: DL9GTB - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 1815 Hz - Time: 0514Z - DXCC: 370 +[26-09-2024 12:14:45] INFO (** New Band **) DX: IZ0ONL - Spotter: EA5RQ - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 13 dB 31 WPM CQ - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:46] INFO DX: LU4AA - Spotter: VE6JY - Freq: 14100.1 - Band: 20M - Mode: CW - Comment: 19 dB 20 WPM NCDXF BCN - Time: 0514Z - DXCC: 100 +[26-09-2024 12:14:46] INFO DX: UC8U - Spotter: DL8LAS - Freq: 14014.4 - Band: 20M - Mode: CW - Comment: 9 dB 24 WPM CQ - Time: 0514Z - DXCC: 15 +[26-09-2024 12:14:46] INFO DX: F6HUK - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 578 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:47] INFO DX: UC6J - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1993 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:47] INFO DX: OM0RX - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1504 Hz - Time: 0514Z - DXCC: 504 +[26-09-2024 12:14:48] INFO (** New Band **) DX: F4GTB - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 1734 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:48] INFO DX: UC8U - Spotter: RN4WA - Freq: 14014.4 - Band: 20M - Mode: CW - Comment: 29 dB 24 WPM CQ - Time: 0514Z - DXCC: 15 +[26-09-2024 12:14:48] INFO DX: NU6V - Spotter: W2MV - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 10 dB 23 WPM CQ - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:49] INFO DX: VU2FR - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 2493 Hz - Time: 0514Z - DXCC: 324 +[26-09-2024 12:14:49] INFO (** New Band **) DX: R2FE - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2401 Hz - Time: 0514Z - DXCC: 126 +[26-09-2024 12:14:50] INFO (** New Band **) DX: DD5RW - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1501 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:50] INFO DX: IK5BNG - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 353 Hz - Time: 0514Z - DXCC: 248 +[26-09-2024 12:14:50] INFO (** New Band **) DX: OK4RQ - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1567 Hz - Time: 0514Z - DXCC: 503 +[26-09-2024 12:14:51] INFO DX: F5JQF - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 2882 Hz - Time: 0514Z - DXCC: 227 +[26-09-2024 12:14:51] INFO DX: K2BAG - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +18 dB 1434 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:52] INFO (** New Mode **) DX: JY5IB - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1440 Hz - Time: 0514Z - DXCC: 342 +[26-09-2024 12:14:52] INFO DX: UY5QJ - Spotter: IK3STG - Freq: 14005.0 - Band: 20M - Mode: CW - Comment: 14 dB 22 WPM CQ - Time: 0514Z - DXCC: 288 +[26-09-2024 12:14:52] INFO (** New Band **) DX: DJ5IL - Spotter: LZ5DI - Freq: 7024.0 - Band: 40M - Mode: CW - Comment: 15 dB 27 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:53] INFO DX: WS4ASE - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -24 dB 1995 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:53] INFO DX: K5NBL - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +10 dB 477 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:54] INFO (** New Band **) DX: DF1DJ - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2132 Hz - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:54] INFO DX: PD5WA - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1462 Hz - Time: 0514Z - DXCC: 263 +[26-09-2024 12:14:54] INFO DX: N3VA - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2572 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:55] INFO (** New Band **) DX: EA7AH - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 2450 Hz - Time: 0514Z - DXCC: 281 +[26-09-2024 12:14:55] INFO DX: N7RLG - Spotter: K9IMM - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2515 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:55] INFO (** New Band **) DX: AF5SH - Spotter: K9IMM - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1216 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:56] INFO (** Worked **) DX: HA7TM - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 2219 Hz - Time: 0514Z - DXCC: 239 +[26-09-2024 12:14:56] INFO DX: HA7TM - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 2219 Hz - Time: 0514Z - DXCC: 239 +[26-09-2024 12:14:56] INFO (** New Band **) DX: DF2JP - Spotter: EA5WU - Freq: 7000.8 - Band: 40M - Mode: CW - Comment: 23 dB 28 WPM CQ - Time: 0514Z - DXCC: 230 +[26-09-2024 12:14:57] INFO (** New Mode **) DX: YV5DR - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2381 Hz - Time: 0514Z - DXCC: 148 +[26-09-2024 12:14:57] INFO DX: KA7RIC - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 363 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:57] INFO DX: SV2BWY - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2346 Hz - Time: 0514Z - DXCC: 236 +[26-09-2024 12:14:58] INFO DX: UA6LVI - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1622 Hz - Time: 0514Z - DXCC: 54 +[26-09-2024 12:14:58] INFO DX: R9CA - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 557 Hz - Time: 0514Z - DXCC: 15 +[26-09-2024 12:14:59] INFO DX: N1RIP - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1981 Hz - Time: 0514Z - DXCC: 291 +[26-09-2024 12:14:59] INFO DX: VK7DZ - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 853 Hz - Time: 0514Z - DXCC: 150 +[26-09-2024 12:14:59] INFO (** Worked **) DX: BA7LIP - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 2098 Hz - Time: 0514Z - DXCC: 318 +[26-09-2024 12:14:59] INFO DX: BA7LIP - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 2098 Hz - Time: 0514Z - DXCC: 318 +[26-09-2024 12:15:00] INFO (** Worked **) DX: JA2QCX - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1928 Hz - Time: 0514Z - DXCC: 339 +[26-09-2024 12:15:00] INFO DX: JA2QCX - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1928 Hz - Time: 0514Z - DXCC: 339 +[26-09-2024 12:15:00] INFO (** Worked **) DX: JR2TZJ - Spotter: LZ3AD - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 2526 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:00] INFO DX: JR2TZJ - Spotter: LZ3AD - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 2526 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:02] INFO DX: WA4TED - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 1404 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:03] INFO DX: NZ4GR - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 990 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:04] INFO (** New Band **) DX: HB9FBT - Spotter: GI4DOH - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 9 dB 25 WPM CQ - Time: 0515Z - DXCC: 287 +[26-09-2024 12:15:05] INFO DX: W4JET - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2764 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:05] INFO (** New Band **) DX: I7DFV - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1840 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:06] INFO (** New Band **) DX: VE7LGP - Spotter: VE3EID - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 1865 Hz - Time: 0515Z - DXCC: 1 +[26-09-2024 12:15:07] INFO (** Worked **) DX: JA4GCL - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 2537 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:07] INFO DX: JA4GCL - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 2537 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:07] INFO DX: DL7ARV - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 2280 Hz - Time: 0515Z - DXCC: 230 +[26-09-2024 12:15:07] INFO (** New Band **) DX: 4X1UF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 269 Hz - Time: 0515Z - DXCC: 336 +[26-09-2024 12:15:08] INFO DX: RM9WU - Spotter: SM7IUN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1406 Hz - Time: 0515Z - DXCC: 15 +[26-09-2024 12:15:08] INFO DX: IK7XJA - Spotter: EA2CW - Freq: 10105.0 - Band: 30M - Mode: CW - Comment: 26 dB 28 WPM CQ - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:08] INFO DX: IK7XJA - Spotter: ON6ZQ - Freq: 10105.0 - Band: 30M - Mode: CW - Comment: 16 dB 28 WPM CQ - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:09] INFO (** New Mode **) DX: IU8LLQ - Spotter: IQ8DO - Freq: 10136.0 - Band: 30M - Mode: - Comment: 05:15 19th Palazzo Reale Ca - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:09] INFO DX: N6FMF - Spotter: N9CO - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 16 dB 21 WPM CQ - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:10] INFO DX: JA3HWX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2144 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:11] INFO (** Worked **) DX: NL8F - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1716 Hz - Time: 0515Z - DXCC: 6 +[26-09-2024 12:15:11] INFO DX: NL8F - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1716 Hz - Time: 0515Z - DXCC: 6 +[26-09-2024 12:15:11] INFO (** Worked **) DX: JK1KSB - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 757 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:11] INFO DX: JK1KSB - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 757 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:11] INFO DX: UA4HJ - Spotter: VU2PTT - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 2 dB 2759 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:13] INFO DX: ZS6AF - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 963 Hz - Time: 0515Z - DXCC: 462 +[26-09-2024 12:15:14] INFO DX: OH8AV - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 2501 Hz - Time: 0515Z - DXCC: 224 +[26-09-2024 12:15:15] INFO (** New Band **) DX: YL3BF - Spotter: G0KTN - Freq: 7030.3 - Band: 40M - Mode: CW - Comment: 12 dB 24 WPM CQ - Time: 0515Z - DXCC: 145 +[26-09-2024 12:15:16] INFO DX: KE7NLT - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 2704 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:17] INFO DX: BG5UEZ - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: + 1 dB 1512 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:17] INFO DX: JG3FSK - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 8 dB 2903 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:17] INFO DX: W7XE - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1159 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:18] INFO DX: BG6HGI - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2002 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:18] INFO DX: JA1QEY - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 2087 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:19] INFO DX: JR1KXX - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 886 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:19] INFO (** Worked **) DX: BG2LXX - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1899 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:19] INFO DX: BG2LXX - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1899 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:20] INFO DX: JH6HZH - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +21 dB 1722 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:20] INFO DX: JF7GDF - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 2290 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:20] INFO DX: JA0LFV - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 2641 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:21] INFO DX: R4WQ - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -10 dB 1164 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:21] INFO DX: JR1AQI - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: +16 dB 1301 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:22] INFO DX: UA4CCH - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 9 dB 1884 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:22] INFO (** Worked **) DX: JH1NOD - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 910 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:22] INFO DX: JH1NOD - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 910 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:22] INFO DX: BG5CPM - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 7 dB 980 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:23] INFO DX: BI1MDW - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 1518 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:23] INFO DX: BY1QH - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 4 dB 1809 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:24] INFO DX: JR3XUH - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 7 dB 2713 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:24] INFO (** Worked **) DX: BH6JOG - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 1417 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:24] INFO DX: BH6JOG - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 5 dB 1417 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:25] INFO DX: BV400 - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 3 dB 2108 Hz - Time: 0515Z - DXCC: 386 +[26-09-2024 12:15:25] INFO (** Worked **) DX: BG2IHF - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +11 dB 2298 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:25] INFO DX: BG2IHF - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: +11 dB 2298 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:25] INFO DX: ZL3GAV - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 490 Hz - Time: 0515Z - DXCC: 170 +[26-09-2024 12:15:26] INFO DX: YB2CLC - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 2530 Hz - Time: 0515Z - DXCC: 327 +[26-09-2024 12:15:26] INFO (** Worked **) DX: BD8SN - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 1 dB 661 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:26] INFO DX: BD8SN - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 1 dB 661 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:27] INFO DX: BD4WVQ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 2 dB 916 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:27] INFO DX: ZL1BQD - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 5 dB 1127 Hz - Time: 0515Z - DXCC: 170 +[26-09-2024 12:15:27] INFO (** Worked **) DX: BH4FXO - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1619 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:27] INFO DX: BH4FXO - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1619 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:28] INFO DX: BG5BNW - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 4 dB 2230 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:28] INFO DX: RV4CC - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 3 dB 2312 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:29] INFO DX: UR4LRG - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 2483 Hz - Time: 0515Z - DXCC: 288 +[26-09-2024 12:15:29] INFO DX: RA3ZK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 9 dB 705 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:29] INFO (** Worked **) DX: BI4IWL - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +13 dB 870 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:29] INFO DX: BI4IWL - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +13 dB 870 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:30] INFO DX: LZ3FX - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 2831 Hz - Time: 0515Z - DXCC: 212 +[26-09-2024 12:15:30] INFO (** New Band **) DX: PA1PAT - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 1290 Hz - Time: 0515Z - DXCC: 263 +[26-09-2024 12:15:30] INFO DX: R3DEE - Spotter: VU2PTT - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 2596 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:31] INFO DX: N6ACA - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1224 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:31] INFO DX: WV1T - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 724 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:32] INFO (** New Band **) DX: EA1IOK - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 2672 Hz - Time: 0515Z - DXCC: 281 +[26-09-2024 12:15:32] INFO DX: ZS6AF - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 1084 Hz - Time: 0515Z - DXCC: 462 +[26-09-2024 12:15:32] INFO (** New Band **) DX: K7NN - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 721 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:33] INFO (** New Band **) DX: K4JH - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 1189 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:33] INFO (** New Band **) DX: KG4JPL - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 2497 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:33] INFO DX: SP9MOC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 756 Hz - Time: 0515Z - DXCC: 269 +[26-09-2024 12:15:34] INFO (** New Band **) DX: DH1JG - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1402 Hz - Time: 0515Z - DXCC: 230 +[26-09-2024 12:15:34] INFO (** New Band **) DX: OH2ZZ - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1694 Hz - Time: 0515Z - DXCC: 224 +[26-09-2024 12:15:35] INFO (** New Band **) DX: IU1TKT - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 1885 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:35] INFO DX: WM8Q - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 893 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:35] INFO DX: N3DAW - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +14 dB 956 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:36] INFO DX: WD4ETU - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1956 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:36] INFO DX: AC0XW - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 546 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:37] INFO DX: YO6PPX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 772 Hz - Time: 0515Z - DXCC: 275 +[26-09-2024 12:15:37] INFO DX: W9NPI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 3 dB 844 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:37] INFO DX: HA5CPN - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 2085 Hz - Time: 0515Z - DXCC: 239 +[26-09-2024 12:15:38] INFO DX: SP5DUJ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 2125 Hz - Time: 0515Z - DXCC: 269 +[26-09-2024 12:15:38] INFO DX: AE1N - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 1492 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:39] INFO DX: KC2NJ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 433 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:39] INFO (** New Band **) DX: OE3MCS - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 2030 Hz - Time: 0515Z - DXCC: 206 +[26-09-2024 12:15:39] INFO DX: IK3OGN - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 975 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:40] INFO DX: US3EZ - Spotter: RK3TD - Freq: 14017.0 - Band: 20M - Mode: CW - Comment: 25 dB 25 WPM CQ - Time: 0515Z - DXCC: 288 +[26-09-2024 12:15:40] INFO DX: IK5VQK - Spotter: DL9GTB - Freq: 10132.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 122 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:40] INFO (** New Band **) DX: SM3ULU - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1177 Hz - Time: 0515Z - DXCC: 284 +[26-09-2024 12:15:41] INFO DX: BG5GLJ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 3 dB 1310 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:41] INFO DX: VK4NQL - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 4 dB 1515 Hz - Time: 0515Z - DXCC: 150 +[26-09-2024 12:15:42] INFO DX: VK3HAG - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 1601 Hz - Time: 0515Z - DXCC: 150 +[26-09-2024 12:15:42] INFO DX: RU6UR - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 4 dB 1819 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:42] INFO DX: BD4UTJ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 2258 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:43] INFO DX: JA1KSP - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 2673 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:43] INFO DX: JA0PMZ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 2773 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:44] INFO DX: BH7MML - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 2852 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:44] INFO DX: BG2LXX - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 4 dB 1344 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:44] INFO DX: BI9AME - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1578 Hz - Time: 0515Z - DXCC: 318 +[26-09-2024 12:15:45] INFO DX: US3EZ - Spotter: RU9CZD - Freq: 14016.9 - Band: 20M - Mode: CW - Comment: 32 dB 26 WPM CQ - Time: 0515Z - DXCC: 288 +[26-09-2024 12:15:45] INFO (** Worked **) DX: YB1JCD - Spotter: VK2GEL - Freq: 21035.9 - Band: 15M - Mode: CW - Comment: 7 dB 29 WPM CQ - Time: 0515Z - DXCC: 327 +[26-09-2024 12:15:45] INFO DX: YB1JCD - Spotter: VK2GEL - Freq: 21035.9 - Band: 15M - Mode: CW - Comment: 7 dB 29 WPM CQ - Time: 0515Z - DXCC: 327 +[26-09-2024 12:15:46] INFO DX: W4CHI - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 932 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:46] INFO DX: FK8CE - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 992 Hz - Time: 0515Z - DXCC: 162 +[26-09-2024 12:15:46] INFO (** Worked **) DX: PY2DPM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 653 Hz - Time: 0515Z - DXCC: 108 +[26-09-2024 12:15:46] INFO DX: PY2DPM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 653 Hz - Time: 0515Z - DXCC: 108 +[26-09-2024 12:15:47] INFO DX: K4YJ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +12 dB 597 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:47] INFO DX: KQ4OTE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1607 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:47] INFO DX: N6AD - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1024 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:48] INFO DX: PY2KY - Spotter: KM3T - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 1612 Hz - Time: 0515Z - DXCC: 108 +[26-09-2024 12:15:48] INFO (** New Band **) DX: YT3PL - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2120 Hz - Time: 0515Z - DXCC: 296 +[26-09-2024 12:15:49] INFO DX: IZ2ACM - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 1434 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:49] INFO DX: R6DPU - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1262 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:49] INFO DX: UA3SCE - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 483 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:50] INFO (** New Band **) DX: LZ3HG - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 959 Hz - Time: 0515Z - DXCC: 212 +[26-09-2024 12:15:50] INFO DX: RA3DRI - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +19 dB 2294 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:51] INFO DX: UA4CKN - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 413 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:51] INFO DX: IU8GYT - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 311 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:51] INFO DX: PE1SAY - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1460 Hz - Time: 0515Z - DXCC: 263 +[26-09-2024 12:15:52] INFO (** Worked **) DX: OH2XO - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2711 Hz - Time: 0515Z - DXCC: 224 +[26-09-2024 12:15:52] INFO DX: OH2XO - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2711 Hz - Time: 0515Z - DXCC: 224 +[26-09-2024 12:15:52] INFO DX: IU2HUQ - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1654 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:52] INFO DX: PD5DLB - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1589 Hz - Time: 0515Z - DXCC: 263 +[26-09-2024 12:15:53] INFO DX: UA4CKB - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 1780 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:53] INFO DX: UB3DQR - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1144 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:54] INFO (** Worked **) DX: UA9OBN - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 933 Hz - Time: 0515Z - DXCC: 15 +[26-09-2024 12:15:54] INFO DX: UA9OBN - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 1 dB 933 Hz - Time: 0515Z - DXCC: 15 +[26-09-2024 12:15:54] INFO DX: R8LCA - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1991 Hz - Time: 0515Z - DXCC: 15 +[26-09-2024 12:15:55] INFO DX: JE1CCD - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1062 Hz - Time: 0515Z - DXCC: 339 +[26-09-2024 12:15:55] INFO (** New Band **) DX: DM2DZM - Spotter: EA2CW - Freq: 7037.0 - Band: 40M - Mode: CW - Comment: 26 dB 39 WPM CQ - Time: 0515Z - DXCC: 230 +[26-09-2024 12:15:55] INFO (** New Band **) DX: ICT0YZ3QEF8 - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2410 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:56] INFO DX: I8JPO - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 2533 Hz - Time: 0515Z - DXCC: 248 +[26-09-2024 12:15:56] INFO DX: R3MBJ - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 934 Hz - Time: 0515Z - DXCC: 54 +[26-09-2024 12:15:56] INFO DX: W7IU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 2372 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:57] INFO (** New Band **) DX: LB8MG - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 221 Hz - Time: 0515Z - DXCC: 266 +[26-09-2024 12:15:57] INFO DX: VK2COS - Spotter: VK2RH - Freq: 7035.0 - Band: 40M - Mode: CW - Comment: 19 dB 12 WPM CQ - Time: 0515Z - DXCC: 150 +[26-09-2024 12:15:58] INFO DX: N6OKU - Spotter: K9LC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1292 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:15:58] INFO (** New Band **) DX: OK1MGA - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1060 Hz - Time: 0515Z - DXCC: 503 +[26-09-2024 12:15:58] INFO (** New Band **) DX: DL1YCL - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 809 Hz - Time: 0515Z - DXCC: 230 +[26-09-2024 12:15:59] INFO (** New Band **) DX: DO1MER - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +19 dB 1616 Hz - Time: 0515Z - DXCC: 230 +[26-09-2024 12:15:59] INFO DX: VK2COS - Spotter: VK3RASA - Freq: 7035.0 - Band: 40M - Mode: CW - Comment: 27 dB 12 WPM CQ - Time: 0515Z - DXCC: 150 +[26-09-2024 12:15:59] INFO DX: 9A4AA - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2182 Hz - Time: 0515Z - DXCC: 497 +[26-09-2024 12:16:00] INFO (** New Band **) DX: SM6GFR - Spotter: S53WW - Freq: 7005.6 - Band: 40M - Mode: CW - Comment: 33 dB 17 WPM CQ - Time: 0515Z - DXCC: 284 +[26-09-2024 12:16:00] INFO (** New Band **) DX: SM6GFR - Spotter: DL0PF - Freq: 7005.6 - Band: 40M - Mode: CW - Comment: 23 dB 17 WPM CQ - Time: 0515Z - DXCC: 284 +[26-09-2024 12:16:01] INFO DX: KT7G - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1965 Hz - Time: 0515Z - DXCC: 291 +[26-09-2024 12:16:01] INFO DX: SV2BRA - Spotter: KM3T - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1515 Hz - Time: 0515Z - DXCC: 236 +[26-09-2024 12:16:01] INFO (** New Band **) DX: SQ9JKM - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -21 dB 454 Hz - Time: 0515Z - DXCC: 269 +[26-09-2024 12:16:02] INFO (** New Band **) DX: M0CKX - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 2414 Hz - Time: 0515Z - DXCC: 223 +[26-09-2024 12:16:02] INFO (** New Band **) DX: K4YT - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +20 dB 1610 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:02] INFO (** New Band **) DX: XE1PM - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1276 Hz - Time: 0516Z - DXCC: 50 +[26-09-2024 12:16:03] INFO DX: NO5Z - Spotter: WB6BEE - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 16 dB 31 WPM CQ - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:03] INFO DX: R6FX - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +11 dB 2640 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:05] INFO DX: SP5EXA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1367 Hz - Time: 0516Z - DXCC: 269 +[26-09-2024 12:16:07] INFO (** New Band **) DX: ON4AOI - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1325 Hz - Time: 0516Z - DXCC: 209 +[26-09-2024 12:16:08] INFO DX: DL2HRT - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 317 Hz - Time: 0516Z - DXCC: 230 +[26-09-2024 12:16:08] INFO DX: LU7DLS - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2150 Hz - Time: 0516Z - DXCC: 100 +[26-09-2024 12:16:08] INFO DX: KH6RS - Spotter: ZL4YL - Freq: 24930.1 - Band: 12M - Mode: CW - Comment: 18 dB 18 WPM NCDXF BCN - Time: 0516Z - DXCC: 110 +[26-09-2024 12:16:09] INFO DX: IK4CBO - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1090 Hz - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:09] INFO (** New Band **) DX: S580ITFC - Spotter: ZL3X - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 16 dB 22 WPM CQ - Time: 0516Z - DXCC: 499 +[26-09-2024 12:16:10] INFO (** New Band **) DX: S5T - Spotter: W3OA - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0516Z - DXCC: 499 +[26-09-2024 12:16:15] INFO DX: OD5ZZ - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1678 Hz - Time: 0516Z - DXCC: 354 +[26-09-2024 12:16:18] INFO DX: KX4I - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +10 dB 1695 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:18] INFO DX: PY2ANY - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -24 dB 1839 Hz - Time: 0516Z - DXCC: 108 +[26-09-2024 12:16:19] INFO DX: KA6VKP - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 3039 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:19] INFO DX: LZ1JZ - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -18 dB 551 Hz - Time: 0516Z - DXCC: 212 +[26-09-2024 12:16:19] INFO (** Worked **) DX: YO3GNF - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 2500 Hz - Time: 0516Z - DXCC: 275 +[26-09-2024 12:16:19] INFO DX: YO3GNF - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 2500 Hz - Time: 0516Z - DXCC: 275 +[26-09-2024 12:16:20] INFO DX: JK1NFJ - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 7 dB 1143 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:20] INFO (** Worked **) DX: BG7SAY - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 2718 Hz - Time: 0516Z - DXCC: 318 +[26-09-2024 12:16:20] INFO DX: BG7SAY - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 2718 Hz - Time: 0516Z - DXCC: 318 +[26-09-2024 12:16:21] INFO DX: BD4XDM - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 2909 Hz - Time: 0516Z - DXCC: 318 +[26-09-2024 12:16:21] INFO DX: R9YQ - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1700 Hz - Time: 0516Z - DXCC: 15 +[26-09-2024 12:16:21] INFO DX: BD5HLI - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 801 Hz - Time: 0516Z - DXCC: 318 +[26-09-2024 12:16:22] INFO DX: JA4HEU - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 1470 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:22] INFO DX: JG2NHV - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 1931 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:23] INFO (** Worked **) DX: JE6RLB - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 840 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:23] INFO DX: JE6RLB - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 840 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:23] INFO DX: UA3ZCG - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 3 dB 1519 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:24] INFO DX: BI1GK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 9 dB 1554 Hz - Time: 0516Z - DXCC: 318 +[26-09-2024 12:16:24] INFO (** New Band **) DX: EA7BHO - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -17 dB 1874 Hz - Time: 0516Z - DXCC: 281 +[26-09-2024 12:16:24] INFO DX: NY3H - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1897 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:25] INFO DX: OH3BYZ - Spotter: VU2CPL - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 2452 Hz - Time: 0516Z - DXCC: 224 +[26-09-2024 12:16:25] INFO DX: IT9ACJ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 634 Hz - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:25] INFO (** New Band **) DX: IU1PZC - Spotter: G4IRN - Freq: 7020.0 - Band: 40M - Mode: CW - Comment: 19 dB 18 WPM CQ - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:26] INFO DX: UW8SM - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 2060 Hz - Time: 0516Z - DXCC: 288 +[26-09-2024 12:16:26] INFO (** New Band **) DX: DO9YU - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1503 Hz - Time: 0516Z - DXCC: 230 +[26-09-2024 12:16:27] INFO (** New Band **) DX: IU1PZC - Spotter: ES2RR - Freq: 7020.0 - Band: 40M - Mode: CW - Comment: 15 dB 18 WPM CQ - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:27] INFO (** New Band **) DX: OE6TNO - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 7 dB 438 Hz - Time: 0516Z - DXCC: 206 +[26-09-2024 12:16:27] INFO (** New Band **) DX: UX3UN - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -22 dB 1855 Hz - Time: 0516Z - DXCC: 288 +[26-09-2024 12:16:28] INFO DX: SV1OML - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1498 Hz - Time: 0516Z - DXCC: 236 +[26-09-2024 12:16:28] INFO DX: KE2BYT - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2134 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:28] INFO (** New Band **) DX: EA3CFV - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 2491 Hz - Time: 0516Z - DXCC: 281 +[26-09-2024 12:16:29] INFO DX: N3FMC - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 1700 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:29] INFO DX: W4EMJ - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 903 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:29] INFO DX: CT2GQA - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 974 Hz - Time: 0516Z - DXCC: 272 +[26-09-2024 12:16:30] INFO DX: SP6OUX - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1059 Hz - Time: 0516Z - DXCC: 269 +[26-09-2024 12:16:30] INFO DX: IZ8PPI - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1981 Hz - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:31] INFO DX: OH4RN - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 2267 Hz - Time: 0516Z - DXCC: 224 +[26-09-2024 12:16:31] INFO DX: OK2JIQ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 7 dB 1132 Hz - Time: 0516Z - DXCC: 503 +[26-09-2024 12:16:31] INFO (** Worked **) DX: HG8LXL - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1202 Hz - Time: 0516Z - DXCC: 239 +[26-09-2024 12:16:31] INFO DX: HG8LXL - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1202 Hz - Time: 0516Z - DXCC: 239 +[26-09-2024 12:16:32] INFO DX: HA7BLT - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 235 Hz - Time: 0516Z - DXCC: 239 +[26-09-2024 12:16:32] INFO DX: N3ADF - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 708 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:32] INFO (** New Band **) DX: DB7BH - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 537 Hz - Time: 0516Z - DXCC: 230 +[26-09-2024 12:16:33] INFO DX: JF1BKN - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 488 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:33] INFO DX: SP6JIU - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 949 Hz - Time: 0516Z - DXCC: 269 +[26-09-2024 12:16:34] INFO DX: LZ3RG - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 2269 Hz - Time: 0516Z - DXCC: 212 +[26-09-2024 12:16:34] INFO (** Worked **) DX: UA6EED - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 2828 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:34] INFO DX: UA6EED - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 2828 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:34] INFO DX: JA2UBD - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1462 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:35] INFO (** Worked **) DX: JA1NGD - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2483 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:35] INFO DX: JA1NGD - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2483 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:35] INFO DX: VR2B - Spotter: 9M2CNC - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 14 dB 22 WPM NCDXF BCN - Time: 0516Z - DXCC: 321 +[26-09-2024 12:16:36] INFO DX: UA3DVB - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 1391 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:36] INFO (** New Band **) DX: MI0NWA - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 730 Hz - Time: 0516Z - DXCC: 265 +[26-09-2024 12:16:36] INFO DX: F1PPH - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1326 Hz - Time: 0516Z - DXCC: 227 +[26-09-2024 12:16:37] INFO DX: IV3DXW - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2854 Hz - Time: 0516Z - DXCC: 248 +[26-09-2024 12:16:37] INFO DX: WS7DA - Spotter: K7MJG - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 12 dB 24 WPM CQ - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:38] INFO DX: WS7DA - Spotter: W6YX - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 39 dB 25 WPM CQ - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:38] INFO DX: HA6MG - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -12 dB 1238 Hz - Time: 0516Z - DXCC: 239 +[26-09-2024 12:16:39] INFO DX: JE3PGF - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -21 dB 2243 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:41] INFO DX: KO4DCR - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 1335 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:45] INFO (** New Band **) DX: OE6OCG - Spotter: KD2YQS - Freq: 7074.8 - Band: 40M - Mode: FT8 - Comment: - Time: 0516Z - DXCC: 206 +[26-09-2024 12:16:46] INFO (** New Band **) DX: F5MDW - Spotter: W1NT - Freq: 7013.2 - Band: 40M - Mode: CW - Comment: 22 dB 19 WPM CQ - Time: 0516Z - DXCC: 227 +[26-09-2024 12:16:47] INFO DX: DL8NBM - Spotter: DL8LAS - Freq: 10128.9 - Band: 30M - Mode: CW - Comment: 4 dB 20 WPM CQ - Time: 0516Z - DXCC: 230 +[26-09-2024 12:16:48] INFO DX: JF1NZW - Spotter: LZ4UX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 712 Hz - Time: 0516Z - DXCC: 339 +[26-09-2024 12:16:49] INFO DX: R4FFQ - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 8 dB 1096 Hz - Time: 0516Z - DXCC: 54 +[26-09-2024 12:16:49] INFO (** New Band **) DX: K5MGY - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 705 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:50] INFO DX: F1LED - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 353 Hz - Time: 0516Z - DXCC: 227 +[26-09-2024 12:16:50] INFO DX: DL8NBM - Spotter: DC8YZ - Freq: 10129.0 - Band: 30M - Mode: CW - Comment: 5 dB 20 WPM CQ - Time: 0516Z - DXCC: 230 +[26-09-2024 12:16:53] INFO DX: KC9GHA - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 1771 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:56] INFO DX: WV0T - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 4 dB 1476 Hz - Time: 0516Z - DXCC: 291 +[26-09-2024 12:16:58] INFO (** New Band **) DX: DK1VD - Spotter: DF2CK - Freq: 7042.6 - Band: 40M - Mode: CW - Comment: 13 dB 32 WPM CQ - Time: 0516Z - DXCC: 230 +[26-09-2024 12:17:00] INFO DX: JA2GWL - Spotter: JH7CSU - Freq: 7008.6 - Band: 40M - Mode: CW - Comment: 38 dB 25 WPM CQ - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:02] INFO DX: PA0SIM - Spotter: EA5WU - Freq: 7031.0 - Band: 40M - Mode: CW - Comment: 27 dB 22 WPM CQ - Time: 0517Z - DXCC: 263 +[26-09-2024 12:17:03] INFO DX: N6FMF - Spotter: K7CO - Freq: 7033.8 - Band: 40M - Mode: CW - Comment: 27 dB 22 WPM CQ - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:04] INFO DX: PA0SIM - Spotter: LZ5DI - Freq: 7031.0 - Band: 40M - Mode: CW - Comment: 21 dB 22 WPM CQ - Time: 0517Z - DXCC: 263 +[26-09-2024 12:17:05] INFO DX: RZ4FO - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -15 dB 2317 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:05] INFO DX: M0UPL - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 2348 Hz - Time: 0517Z - DXCC: 223 +[26-09-2024 12:17:06] INFO (** New Band **) DX: DO1BLI - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 999 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:07] INFO (** New Band **) DX: ON3CCC - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 1555 Hz - Time: 0517Z - DXCC: 209 +[26-09-2024 12:17:09] INFO DX: K7ZGQ - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1254 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:09] INFO DX: NU6V - Spotter: VE7CC - Freq: 14022.2 - Band: 20M - Mode: CW - Comment: 11 dB 23 WPM CQ - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:09] INFO (** Worked **) DX: BD4SVU - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 778 Hz - Time: 0517Z - DXCC: 318 +[26-09-2024 12:17:09] INFO DX: BD4SVU - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 778 Hz - Time: 0517Z - DXCC: 318 +[26-09-2024 12:17:10] INFO (** New DXCC **) DX: 6O3OSZV0WGF - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 1191 Hz - Time: 0517Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:17:10] INFO DX: IU8PYF - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1085 Hz - Time: 0517Z - DXCC: 248 +[26-09-2024 12:17:11] INFO DX: EA7GUM - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 2095 Hz - Time: 0517Z - DXCC: 281 +[26-09-2024 12:17:11] INFO DX: 4X6TU - Spotter: DM5GG - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 13 dB 22 WPM NCDXF BCN - Time: 0517Z - DXCC: 997 +[26-09-2024 12:17:12] INFO DX: EA4TX - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1260 Hz - Time: 0517Z - DXCC: 281 +[26-09-2024 12:17:14] INFO DX: R6AC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 2347 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:14] INFO (** New Band **) DX: 4L4DX - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 2608 Hz - Time: 0517Z - DXCC: 75 +[26-09-2024 12:17:17] INFO (** New Band **) DX: HB9IKO - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 9 dB 2066 Hz - Time: 0517Z - DXCC: 287 +[26-09-2024 12:17:17] INFO DX: F4CQS - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2027 Hz - Time: 0517Z - DXCC: 227 +[26-09-2024 12:17:18] INFO DX: RW3PL - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 2125 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:19] INFO DX: KD2YIO - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 585 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:19] INFO (** Worked **) DX: RV6F - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1265 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:19] INFO DX: RV6F - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1265 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:21] INFO DX: DS4OMS - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: +11 dB 1763 Hz - Time: 0517Z - DXCC: 137 +[26-09-2024 12:17:22] INFO DX: VK2IO - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 9 dB 1656 Hz - Time: 0517Z - DXCC: 150 +[26-09-2024 12:17:22] INFO (** Worked **) DX: JA3BJZ - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 9 dB 1922 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:22] INFO DX: JA3BJZ - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 9 dB 1922 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:23] INFO (** Worked **) DX: JH8CGU - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2510 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:23] INFO DX: JH8CGU - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2510 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:23] INFO DX: VK5MH - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 2910 Hz - Time: 0517Z - DXCC: 150 +[26-09-2024 12:17:23] INFO (** Worked **) DX: BI6OIZ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB - Time: 0517Z - DXCC: 318 +[26-09-2024 12:17:23] INFO DX: BI6OIZ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB - Time: 0517Z - DXCC: 318 +[26-09-2024 12:17:24] INFO (** Worked **) DX: JA2KFQ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 364 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:24] INFO DX: JA2KFQ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 364 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:24] INFO (** Worked **) DX: JI1BBN - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 419 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:24] INFO DX: JI1BBN - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 419 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:25] INFO (** Worked **) DX: 7L4IKF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 3 dB 1680 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:25] INFO DX: 7L4IKF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 3 dB 1680 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:25] INFO DX: JR1DUT - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 2137 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:26] INFO DX: W7KEG - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 969 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:26] INFO DX: 4X6TU - Spotter: DD5XX - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 12 dB 23 WPM NCDXF BCN - Time: 0517Z - DXCC: 997 +[26-09-2024 12:17:26] INFO DX: RQ7R - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2515 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:27] INFO DX: US5EAA - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 2253 Hz - Time: 0517Z - DXCC: 288 +[26-09-2024 12:17:27] INFO (** New Band **) DX: SV5AZK - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -18 dB 1898 Hz - Time: 0517Z - DXCC: 45 +[26-09-2024 12:17:27] INFO DX: HB9ZHK - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1268 Hz - Time: 0517Z - DXCC: 287 +[26-09-2024 12:17:28] INFO (** New Band **) DX: YO2HK - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 2247 Hz - Time: 0517Z - DXCC: 275 +[26-09-2024 12:17:28] INFO DX: DL7TCW - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 400 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:29] INFO DX: IW3IBN - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 771 Hz - Time: 0517Z - DXCC: 248 +[26-09-2024 12:17:29] INFO DX: DL1GLO - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +10 dB 2288 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:29] INFO DX: ON7PQ - Spotter: G0KTN - Freq: 1822.5 - Band: 17M - Mode: CW - Comment: 21 dB 25 WPM CQ - Time: 0517Z - DXCC: 209 +[26-09-2024 12:17:30] INFO DX: CS3B - Spotter: KM3T - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 10 dB 18 WPM NCDXF BCN - Time: 0517Z - DXCC: 256 +[26-09-2024 12:17:30] INFO (** New Band **) DX: IZ0PAP - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1210 Hz - Time: 0517Z - DXCC: 248 +[26-09-2024 12:17:30] INFO (** New Band **) DX: F5LOW - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1268 Hz - Time: 0517Z - DXCC: 227 +[26-09-2024 12:17:31] INFO (** New Band **) DX: OH2MDN - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 478 Hz - Time: 0517Z - DXCC: 224 +[26-09-2024 12:17:31] INFO DX: RA3TKS - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 8 dB 1223 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:32] INFO (** New Band **) DX: W2RLW - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 1497 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:32] INFO (** New Band **) DX: SA5CDO - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2149 Hz - Time: 0517Z - DXCC: 284 +[26-09-2024 12:17:32] INFO DX: KH2SR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 2246 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:33] INFO (** New Band **) DX: DL4ME - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1898 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:33] INFO DX: IK5ZTT - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 536 Hz - Time: 0517Z - DXCC: 248 +[26-09-2024 12:17:33] INFO DX: VK3XEO - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 773 Hz - Time: 0517Z - DXCC: 150 +[26-09-2024 12:17:34] INFO DX: SV4IMN - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 934 Hz - Time: 0517Z - DXCC: 236 +[26-09-2024 12:17:34] INFO DX: S50KGB - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1707 Hz - Time: 0517Z - DXCC: 499 +[26-09-2024 12:17:35] INFO DX: SV2SIH - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1755 Hz - Time: 0517Z - DXCC: 236 +[26-09-2024 12:17:35] INFO DX: RV3QI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 654 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:35] INFO DX: N4ART - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1676 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:36] INFO DX: W1ABY - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +17 dB 2455 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:36] INFO DX: ON7PQ - Spotter: DK9IP - Freq: 1822.5 - Band: 17M - Mode: CW - Comment: 25 dB 24 WPM CQ - Time: 0517Z - DXCC: 209 +[26-09-2024 12:17:37] INFO DX: RU3GC - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 933 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:37] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 10 dB 22 WPM NCDXF BCN - Time: 0517Z - DXCC: 997 +[26-09-2024 12:17:37] INFO DX: YL3JD - Spotter: LZ4UX - Freq: 14026.0 - Band: 20M - Mode: CW - Comment: 21 dB 20 WPM CQ - Time: 0517Z - DXCC: 145 +[26-09-2024 12:17:38] INFO (** New Band **) DX: WW6W - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -11 dB 1226 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:38] INFO DX: K4QAL - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 1565 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:39] INFO (** New Band **) DX: DM8MH - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 740 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:39] INFO DX: VA7MJN - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1869 Hz - Time: 0517Z - DXCC: 1 +[26-09-2024 12:17:39] INFO DX: DJ0MAB - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1862 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:40] INFO (** New Band **) DX: YL3CW - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 2300 Hz - Time: 0517Z - DXCC: 145 +[26-09-2024 12:17:40] INFO DX: DK1WB - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2643 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:41] INFO DX: IK4LZH - Spotter: DL9GTB - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -13 dB 216 Hz - Time: 0517Z - DXCC: 248 +[26-09-2024 12:17:41] INFO DX: UC8U - Spotter: YO2MAX - Freq: 14014.4 - Band: 20M - Mode: CW - Comment: 3 dB 25 WPM CQ - Time: 0517Z - DXCC: 15 +[26-09-2024 12:17:41] INFO (** New Band **) DX: DM1SV - Spotter: YO2MAX - Freq: 3570.0 - Band: 80M - Mode: FT8 - Comment: - 6 dB 4383 Hz - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:42] INFO (** Worked **) DX: JR3QCB - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 844 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:42] INFO DX: JR3QCB - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 844 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:42] INFO DX: JE1CCD - Spotter: LZ3AD - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +11 dB 1009 Hz - Time: 0517Z - DXCC: 339 +[26-09-2024 12:17:42] INFO DX: 4X6TU - Spotter: DM5GG - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 15 dB 22 WPM NCDXF BCN - Time: 0517Z - DXCC: 997 +[26-09-2024 12:17:43] INFO DX: HB9EKJ - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 223 Hz - Time: 0517Z - DXCC: 287 +[26-09-2024 12:17:43] INFO (** New Band **) DX: YT7FTY - Spotter: DM5GG - Freq: 7002.0 - Band: 40M - Mode: CW - Comment: 28 dB 23 WPM CQ - Time: 0517Z - DXCC: 296 +[26-09-2024 12:17:44] INFO (** New Band **) DX: YT7FTY - Spotter: DF7GB - Freq: 7002.0 - Band: 40M - Mode: CW - Comment: 17 dB 23 WPM CQ - Time: 0517Z - DXCC: 296 +[26-09-2024 12:17:45] INFO (** Worked **) DX: RZ3DCJ - Spotter: LZ5DI - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 18 dB 23 WPM CQ - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:45] INFO DX: RZ3DCJ - Spotter: LZ5DI - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 18 dB 23 WPM CQ - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:46] INFO (** New Band **) DX: F5LOW - Spotter: KD2YQS - Freq: 7075.2 - Band: 40M - Mode: FT8 - Comment: - Time: 0517Z - DXCC: 227 +[26-09-2024 12:17:49] INFO (** New Band **) DX: YO4GOU - Spotter: DF2CK - Freq: 7039.0 - Band: 40M - Mode: CW - Comment: 25 dB 28 WPM CQ - Time: 0517Z - DXCC: 275 +[26-09-2024 12:17:50] INFO (** New Band **) DX: OE4BHF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 1138 Hz - Time: 0517Z - DXCC: 206 +[26-09-2024 12:17:50] INFO DX: RU3X - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 1803 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:50] INFO (** New Band **) DX: LA9GX - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +13 dB 2153 Hz - Time: 0517Z - DXCC: 266 +[26-09-2024 12:17:51] INFO DX: UY5QJ - Spotter: MM3NDH - Freq: 14005.0 - Band: 20M - Mode: CW - Comment: 3 dB 22 WPM CQ - Time: 0517Z - DXCC: 288 +[26-09-2024 12:17:52] INFO DX: VA7LDT - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 1076 Hz - Time: 0517Z - DXCC: 1 +[26-09-2024 12:17:53] INFO DX: DK1VD - Spotter: UA4CC - Freq: 10102.4 - Band: 30M - Mode: CW - Comment: 6 dB 32 WPM CQ - Time: 0517Z - DXCC: 230 +[26-09-2024 12:17:54] INFO DX: YL3JD - Spotter: OK4QRO - Freq: 14026.0 - Band: 20M - Mode: CW - Comment: 6 dB 20 WPM CQ - Time: 0517Z - DXCC: 145 +[26-09-2024 12:17:55] INFO DX: YO8RQP - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1098 Hz - Time: 0517Z - DXCC: 275 +[26-09-2024 12:17:55] INFO DX: RA6AVP - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 2355 Hz - Time: 0517Z - DXCC: 54 +[26-09-2024 12:17:57] INFO DX: KY1X - Spotter: NG7M - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1165 Hz - Time: 0517Z - DXCC: 291 +[26-09-2024 12:17:58] INFO DX: R0SK - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 2123 Hz - Time: 0517Z - DXCC: 15 +[26-09-2024 12:18:02] INFO (** New Band **) DX: Z32LM - Spotter: S53WW - Freq: 7011.3 - Band: 40M - Mode: CW - Comment: 34 dB 16 WPM CQ - Time: 0518Z - DXCC: 502 +[26-09-2024 12:18:02] INFO (** Worked **) DX: HA1BF - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 836 Hz - Time: 0518Z - DXCC: 239 +[26-09-2024 12:18:02] INFO DX: HA1BF - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 836 Hz - Time: 0518Z - DXCC: 239 +[26-09-2024 12:18:05] INFO (** New Band **) DX: YO3MFL - Spotter: SQ5OUO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1730 Hz - Time: 0518Z - DXCC: 275 +[26-09-2024 12:18:06] INFO DX: WR250MW - Spotter: MM0ZBH - Freq: 7037.5 - Band: 40M - Mode: CW - Comment: 2 dB 13 WPM CQ - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:07] INFO DX: JI1BNU - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 2522 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:08] INFO (** Worked **) DX: JA3KVT - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1702 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:08] INFO DX: JA3KVT - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1702 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:08] INFO (** New Band **) DX: YT7FT - Spotter: DL8LAS - Freq: 7002.0 - Band: 40M - Mode: CW - Comment: 4 dB 23 WPM CQ - Time: 0518Z - DXCC: 296 +[26-09-2024 12:18:09] INFO (** New Band **) DX: YT7FT - Spotter: DK9IP - Freq: 7002.0 - Band: 40M - Mode: CW - Comment: 18 dB 23 WPM CQ - Time: 0518Z - DXCC: 296 +[26-09-2024 12:18:10] INFO DX: KX4I - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 2362 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:10] INFO DX: N6DF - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 2428 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:11] INFO DX: KD4HOU - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1653 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:11] INFO DX: K5NCW - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 2171 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:11] INFO DX: LU3HFS - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 2251 Hz - Time: 0518Z - DXCC: 100 +[26-09-2024 12:18:12] INFO (** New Mode **) DX: TI2FAF - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 2333 Hz - Time: 0518Z - DXCC: 308 +[26-09-2024 12:18:12] INFO DX: JR1AQI - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 1181 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:19] INFO (** New Band **) DX: EA3ACQ - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 487 Hz - Time: 0518Z - DXCC: 281 +[26-09-2024 12:18:19] INFO (** New Band **) DX: KN1R - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 2473 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:20] INFO DX: KK5JY - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 525 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:20] INFO (** New Band **) DX: DL1YAU - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 995 Hz - Time: 0518Z - DXCC: 230 +[26-09-2024 12:18:21] INFO (** New Band **) DX: WM4RT - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 1232 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:21] INFO (** New Band **) DX: F6GGA - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 2331 Hz - Time: 0518Z - DXCC: 227 +[26-09-2024 12:18:21] INFO (** Worked **) DX: BI8AWT - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1585 Hz - Time: 0518Z - DXCC: 318 +[26-09-2024 12:18:21] INFO DX: BI8AWT - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 1585 Hz - Time: 0518Z - DXCC: 318 +[26-09-2024 12:18:22] INFO DX: VE7WGW - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 477 Hz - Time: 0518Z - DXCC: 1 +[26-09-2024 12:18:22] INFO (** New Band **) DX: IK1OVY - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1103 Hz - Time: 0518Z - DXCC: 248 +[26-09-2024 12:18:23] INFO DX: VK6IS - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -10 dB 1538 Hz - Time: 0518Z - DXCC: 150 +[26-09-2024 12:18:23] INFO DX: 9M2SPN - Spotter: VK2GEL - Freq: 21013.0 - Band: 15M - Mode: CW - Comment: 19 dB 28 WPM CQ - Time: 0518Z - DXCC: 299 +[26-09-2024 12:18:23] INFO (** Worked **) DX: UA0LQE - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1254 Hz - Time: 0518Z - DXCC: 15 +[26-09-2024 12:18:23] INFO DX: UA0LQE - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1254 Hz - Time: 0518Z - DXCC: 15 +[26-09-2024 12:18:24] INFO (** Worked **) DX: JA1JEJ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 985 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:24] INFO DX: JA1JEJ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 985 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:24] INFO DX: RQ4F - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +11 dB 1893 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:25] INFO DX: BG2IHF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 2312 Hz - Time: 0518Z - DXCC: 318 +[26-09-2024 12:18:25] INFO DX: VK3NFS - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 1 dB 1712 Hz - Time: 0518Z - DXCC: 150 +[26-09-2024 12:18:25] INFO client connected[::1]:59468 +[26-09-2024 12:18:25] INFO (** Worked **) DX: JF3VAX - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2994 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:25] INFO DX: JF3VAX - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2994 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:29] INFO DX: AK6ID - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1337 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:29] INFO DX: SV1OCA - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1635 Hz - Time: 0518Z - DXCC: 236 +[26-09-2024 12:18:30] INFO (** New Band **) DX: KF7GMV - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -19 dB 847 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:30] INFO (** New Band **) DX: SP7AH - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 9 dB 646 Hz - Time: 0518Z - DXCC: 269 +[26-09-2024 12:18:30] INFO DX: IZ0GRR - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1825 Hz - Time: 0518Z - DXCC: 248 +[26-09-2024 12:18:31] INFO DX: UV5ETX - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1964 Hz - Time: 0518Z - DXCC: 288 +[26-09-2024 12:18:31] INFO (** New Band **) DX: F5LOW - Spotter: YO2MAX - Freq: 7068.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 2954 Hz - Time: 0518Z - DXCC: 227 +[26-09-2024 12:18:31] INFO (** New Band **) DX: OM1AN - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 2786 Hz - Time: 0518Z - DXCC: 504 +[26-09-2024 12:18:32] INFO (** New Band **) DX: IK8OAM - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1808 Hz - Time: 0518Z - DXCC: 248 +[26-09-2024 12:18:32] INFO DX: UR5EDX - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +18 dB 925 Hz - Time: 0518Z - DXCC: 288 +[26-09-2024 12:18:33] INFO DX: DC7JZB - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 382 Hz - Time: 0518Z - DXCC: 230 +[26-09-2024 12:18:33] INFO DX: KG0US - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 2548 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:33] INFO DX: AC4O - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1430 Hz - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:34] INFO DX: 4X1UF - Spotter: SM7IUN - Freq: 28078.0 - Band: 10M - Mode: FT8 - Comment: - 3 dB 164 Hz - Time: 0518Z - DXCC: 336 +[26-09-2024 12:18:34] INFO (** New Band **) DX: DL9NO - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 5 dB 1963 Hz - Time: 0518Z - DXCC: 230 +[26-09-2024 12:18:34] INFO (** New Band **) DX: SM6OID - Spotter: WB6BEE - Freq: 7004.0 - Band: 40M - Mode: CW - Comment: 8 dB 17 WPM CQ - Time: 0518Z - DXCC: 284 +[26-09-2024 12:18:35] INFO DX: HA5AQ - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1805 Hz - Time: 0518Z - DXCC: 239 +[26-09-2024 12:18:35] INFO (** New Band **) DX: LX0FOUR - Spotter: DK2GOX - Freq: 70161.6 - Band: 40M - Mode: CW - Comment: 8 dB 10 WPM BEACON - Time: 0518Z - DXCC: 254 +[26-09-2024 12:18:36] INFO (** New Band **) DX: SM6OID - Spotter: LZ5DI - Freq: 7004.0 - Band: 40M - Mode: CW - Comment: 15 dB 17 WPM CQ - Time: 0518Z - DXCC: 284 +[26-09-2024 12:18:36] INFO DX: R6LIG - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 2016 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:36] INFO DX: RZ3DUB - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1143 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:37] INFO DX: BG5VLI - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -21 dB 2033 Hz - Time: 0518Z - DXCC: 318 +[26-09-2024 12:18:37] INFO client [::1]:59468 disconnected +[26-09-2024 12:18:37] INFO DX: JA7EUX - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 1562 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:38] INFO DX: SP8KBZ - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -20 dB 1742 Hz - Time: 0518Z - DXCC: 269 +[26-09-2024 12:18:38] INFO client [::1]:59468 disconnected +[26-09-2024 12:18:38] INFO DX: RA6WF - Spotter: DL9GTB - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 2429 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:38] INFO DX: HZ1BH - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1997 Hz - Time: 0518Z - DXCC: 378 +[26-09-2024 12:18:39] INFO DX: 9M2SPN - Spotter: JN1ILK - Freq: 21013.0 - Band: 15M - Mode: CW - Comment: 4 dB 28 WPM CQ - Time: 0518Z - DXCC: 299 +[26-09-2024 12:18:40] INFO DX: OK0EV - Spotter: DF2CK - Freq: 1854.0 - Band: 17M - Mode: CW - Comment: 21 dB 16 WPM BEACON - Time: 0518Z - DXCC: 503 +[26-09-2024 12:18:40] INFO client connected[::1]:59484 +[26-09-2024 12:18:47] INFO DX: JH2QMT - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2398 Hz - Time: 0518Z - DXCC: 339 +[26-09-2024 12:18:47] INFO (** New Band **) DX: EA1NY - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -18 dB 1524 Hz - Time: 0518Z - DXCC: 281 +[26-09-2024 12:18:47] INFO (** New Band **) DX: VA3BOO - Spotter: WE9V - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1447 Hz - Time: 0518Z - DXCC: 1 +[26-09-2024 12:18:49] INFO DX: KH6RS - Spotter: VK2RH - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 3 dB 22 WPM NCDXF BCN - Time: 0518Z - DXCC: 110 +[26-09-2024 12:18:50] INFO DX: RA6DT - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 2274 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:56] INFO DX: IK5VLL - Spotter: R9IR - Freq: 21038.9 - Band: 15M - Mode: CW - Comment: 21 dB 28 WPM CQ - Time: 0518Z - DXCC: 248 +[26-09-2024 12:18:56] INFO (** Worked **) DX: VR2VDX - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 933 Hz - Time: 0518Z - DXCC: 321 +[26-09-2024 12:18:56] INFO DX: VR2VDX - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 933 Hz - Time: 0518Z - DXCC: 321 +[26-09-2024 12:18:57] INFO DX: UW5EHL - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 728 Hz - Time: 0518Z - DXCC: 288 +[26-09-2024 12:18:57] INFO DX: K3CQR - Spotter: KP3CW - Freq: 14014.9 - Band: 20M - Mode: CW - Comment: 16 dB 19 WPM CQ - Time: 0518Z - DXCC: 291 +[26-09-2024 12:18:58] INFO DX: R2GF - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 0 dB 1404 Hz - Time: 0518Z - DXCC: 54 +[26-09-2024 12:18:58] INFO DX: LB6FG - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 1703 Hz - Time: 0518Z - DXCC: 266 +[26-09-2024 12:18:59] INFO DX: IK5VLL - Spotter: RN4WA - Freq: 21038.9 - Band: 15M - Mode: CW - Comment: 22 dB 28 WPM CQ - Time: 0518Z - DXCC: 248 +[26-09-2024 12:18:59] INFO DX: K3CQR - Spotter: NT6Q - Freq: 14014.9 - Band: 20M - Mode: CW - Comment: 15 dB 19 WPM CQ - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:01] INFO (** New Band **) DX: IK5VQK - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 1259 Hz - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:03] INFO (** New Band **) DX: DL3WA - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 1 dB 2745 Hz - Time: 0519Z - DXCC: 230 +[26-09-2024 12:19:05] INFO XV9Q clicked on spot "SV5AZK" at 28.074000 +[26-09-2024 12:19:05] INFO DX: K6KWV - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 8 dB 1030 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:07] INFO DX: UA6A - Spotter: VU2PTT - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: +13 dB 2592 Hz - Time: 0519Z - DXCC: 54 +[26-09-2024 12:19:07] INFO DX: IK4LZH - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -20 dB 886 Hz - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:07] INFO (** New Band **) DX: DK1VD - Spotter: DK0TE - Freq: 3537.4 - Band: 80M - Mode: CW - Comment: 29 dB 33 WPM CQ - Time: 0519Z - DXCC: 230 +[26-09-2024 12:19:08] INFO (** New Band **) DX: 9A2DS - Spotter: RK3TD - Freq: 7007.1 - Band: 40M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0519Z - DXCC: 497 +[26-09-2024 12:19:08] INFO (** New Band **) DX: DK1VD - Spotter: G0KTN - Freq: 3537.4 - Band: 80M - Mode: CW - Comment: 22 dB 33 WPM CQ - Time: 0519Z - DXCC: 230 +[26-09-2024 12:19:09] INFO (** Worked **) DX: BD8DRU - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1594 Hz - Time: 0519Z - DXCC: 318 +[26-09-2024 12:19:09] INFO DX: BD8DRU - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1594 Hz - Time: 0519Z - DXCC: 318 +[26-09-2024 12:19:09] INFO (** Worked **) DX: DS5TUK - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 1341 Hz - Time: 0519Z - DXCC: 137 +[26-09-2024 12:19:09] INFO DX: DS5TUK - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 1341 Hz - Time: 0519Z - DXCC: 137 +[26-09-2024 12:19:09] INFO (** New Band **) DX: MI0OBC - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 113 Hz - Time: 0519Z - DXCC: 265 +[26-09-2024 12:19:10] INFO DX: VK6APK - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 1846 Hz - Time: 0519Z - DXCC: 150 +[26-09-2024 12:19:10] INFO XV9Q clicked on spot "SV5AZK" at 28.074000 +[26-09-2024 12:19:10] INFO (** Worked **) DX: LZ2XF - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1678 Hz - Time: 0519Z - DXCC: 212 +[26-09-2024 12:19:10] INFO DX: LZ2XF - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 1678 Hz - Time: 0519Z - DXCC: 212 +[26-09-2024 12:19:11] INFO DX: DJ5IL - Spotter: RU9CZD - Freq: 14024.9 - Band: 20M - Mode: CW - Comment: 18 dB 24 WPM CQ - Time: 0519Z - DXCC: 230 +[26-09-2024 12:19:11] INFO (** Worked **) DX: JG3XLB - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 2764 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:11] INFO DX: JG3XLB - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 2764 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:11] INFO DX: SP3CUG - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 6 dB 1183 Hz - Time: 0519Z - DXCC: 269 +[26-09-2024 12:19:14] INFO (** New Mode **) DX: ON4STA - Spotter: KB8OTK - Freq: 3574.1 - Band: 80M - Mode: - Comment: - Time: 0519Z - DXCC: 209 +[26-09-2024 12:19:16] INFO DX: SP7WNZ - Spotter: KD2YQS - Freq: 7074.7 - Band: 40M - Mode: FT8 - Comment: - Time: 0519Z - DXCC: 269 +[26-09-2024 12:19:17] INFO DX: KM0PAR - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1545 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:18] INFO DX: N4FMO - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1308 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:18] INFO DX: K6BLG - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 335 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:19] INFO (** New Band **) DX: OZ6NF - Spotter: OK1HRA - Freq: 3547.0 - Band: 80M - Mode: CW - Comment: 18 dB 23 WPM CQ - Time: 0519Z - DXCC: 221 +[26-09-2024 12:19:19] INFO (** New Band **) DX: OZ6NF - Spotter: DK9IP - Freq: 3547.0 - Band: 80M - Mode: CW - Comment: 19 dB 23 WPM CQ - Time: 0519Z - DXCC: 221 +[26-09-2024 12:19:20] INFO DX: ZS6AF - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1016 Hz - Time: 0519Z - DXCC: 462 +[26-09-2024 12:19:21] INFO DX: KG4JPL - Spotter: ZF1A - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -14 dB 2499 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:22] INFO (** New Band **) DX: EA3HMM - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 400 Hz - Time: 0519Z - DXCC: 281 +[26-09-2024 12:19:22] INFO DX: WD4HXG - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 1705 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:22] INFO DX: K8QKY - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 2365 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:23] INFO DX: JG2NHV - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -19 dB 1870 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:23] INFO DX: OK0EV - Spotter: DM5GG - Freq: 1854.0 - Band: 17M - Mode: CW - Comment: 7 dB 16 WPM BEACON - Time: 0519Z - DXCC: 503 +[26-09-2024 12:19:24] INFO (** Worked **) DX: JJ0NCC - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1538 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:24] INFO DX: JJ0NCC - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1538 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:24] INFO DX: YG2CDM - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 2183 Hz - Time: 0519Z - DXCC: 327 +[26-09-2024 12:19:25] INFO (** Worked **) DX: JA1CQK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2312 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:25] INFO DX: JA1CQK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2312 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:25] INFO DX: JA1VLK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 2078 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:26] INFO DX: ZL3WPK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1705 Hz - Time: 0519Z - DXCC: 170 +[26-09-2024 12:19:26] INFO DX: VK3LGQ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1944 Hz - Time: 0519Z - DXCC: 150 +[26-09-2024 12:19:26] INFO DX: KK7DLC - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 2340 Hz - Time: 0519Z - DXCC: 291 +[26-09-2024 12:19:27] INFO (** New Band **) DX: IZ0ONL - Spotter: SE5E - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 21 dB 19 WPM CQ - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:27] INFO (** Worked **) DX: UA6NT - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 2312 Hz - Time: 0519Z - DXCC: 54 +[26-09-2024 12:19:27] INFO DX: UA6NT - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 2312 Hz - Time: 0519Z - DXCC: 54 +[26-09-2024 12:19:28] INFO DX: SP7WNZ - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 614 Hz - Time: 0519Z - DXCC: 269 +[26-09-2024 12:19:28] INFO DX: R3IX - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1434 Hz - Time: 0519Z - DXCC: 54 +[26-09-2024 12:19:31] INFO (** New Band **) DX: CE7GFN - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1045 Hz - Time: 0519Z - DXCC: 112 +[26-09-2024 12:19:31] INFO DX: DK1VD - Spotter: DM6EE - Freq: 1832.3 - Band: 17M - Mode: CW - Comment: 6 dB 32 WPM CQ - Time: 0519Z - DXCC: 230 +[26-09-2024 12:19:34] INFO (** New Band **) DX: OZ7FOC - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 1744 Hz - Time: 0519Z - DXCC: 221 +[26-09-2024 12:19:36] INFO (** New Band **) DX: OA4DYO - Spotter: W3OA - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1399 Hz - Time: 0519Z - DXCC: 136 +[26-09-2024 12:19:38] INFO DX: RV9DD - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 2130 Hz - Time: 0519Z - DXCC: 15 +[26-09-2024 12:19:39] INFO DX: OZ1BLP - Spotter: G4IRN - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 1102 Hz - Time: 0519Z - DXCC: 221 +[26-09-2024 12:19:39] INFO DX: RX6ACR - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2459 Hz - Time: 0519Z - DXCC: 54 +[26-09-2024 12:19:40] INFO DX: IZ4AKO - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 2134 Hz - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:40] INFO DX: JA5GYU - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 747 Hz - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:45] INFO DX: JH6LDY - Spotter: JI1HFJ - Freq: 14051.1 - Band: 20M - Mode: CW - Comment: 13 dB 16 WPM CQ - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:47] INFO DX: JH6LDY - Spotter: 7N4XCV - Freq: 14051.0 - Band: 20M - Mode: CW - Comment: 19 dB 16 WPM CQ - Time: 0519Z - DXCC: 339 +[26-09-2024 12:19:48] INFO (** New Mode **) DX: FK8CE - Spotter: W7XE - Freq: 14074.0 - Band: 20M - Mode: - Comment: ft8 - Time: 0519Z - DXCC: 162 +[26-09-2024 12:19:49] INFO DX: F8AEJ - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: +12 dB 517 Hz - Time: 0519Z - DXCC: 227 +[26-09-2024 12:19:49] INFO (** New Band **) DX: LY3QR - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1184 Hz - Time: 0519Z - DXCC: 146 +[26-09-2024 12:19:51] INFO DX: BD8DOK - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1110 Hz - Time: 0519Z - DXCC: 318 +[26-09-2024 12:19:51] INFO (** New Band **) DX: I5ECW - Spotter: F4GOU - Freq: 3524.0 - Band: 80M - Mode: CW - Comment: 16 dB 23 WPM CQ - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:51] INFO (** New Band **) DX: I5ECW - Spotter: DC8YZ - Freq: 3524.0 - Band: 80M - Mode: CW - Comment: 30 dB 24 WPM CQ - Time: 0519Z - DXCC: 248 +[26-09-2024 12:19:57] INFO (** New Band **) DX: IU1PZC - Spotter: SE5E - Freq: 7020.0 - Band: 40M - Mode: CW - Comment: 7 dB 18 WPM CQ - Time: 0519Z - DXCC: 248 +[26-09-2024 12:20:01] INFO DX: K5CWR - Spotter: VE6AO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 347 Hz - Time: 0520Z - DXCC: 291 +[26-09-2024 12:20:02] INFO (** Worked **) DX: JH1DSX - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 643 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:02] INFO DX: JH1DSX - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 643 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:09] INFO (** Worked **) DX: JA6CDC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 2639 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:09] INFO DX: JA6CDC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -15 dB 2639 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:15] INFO DX: IK7XJA - Spotter: 2E0INH - Freq: 10105.0 - Band: 30M - Mode: CW - Comment: 0 dB 28 WPM CQ - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:16] INFO DX: JA1VLK - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 2182 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:17] INFO (** Worked **) DX: JF6FFS - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +20 dB 1457 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:17] INFO DX: JF6FFS - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +20 dB 1457 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:17] INFO DX: YB2CLC - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -11 dB 1940 Hz - Time: 0520Z - DXCC: 327 +[26-09-2024 12:20:18] INFO DX: RZ3ZZ - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 2468 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:18] INFO DX: JG1MPG - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 8 dB 1185 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:20] INFO DX: RZ3QN - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 7 dB 1714 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:20] INFO DX: UR5FS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +19 dB 1675 Hz - Time: 0520Z - DXCC: 288 +[26-09-2024 12:20:20] INFO DX: PI45IPARC - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 1502 Hz - Time: 0520Z - DXCC: 263 +[26-09-2024 12:20:21] INFO DX: VE7SA - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 2347 Hz - Time: 0520Z - DXCC: 1 +[26-09-2024 12:20:21] INFO DX: IZ7XNB - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 994 Hz - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:22] INFO (** Worked **) DX: SV8NAJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2034 Hz - Time: 0520Z - DXCC: 236 +[26-09-2024 12:20:22] INFO DX: SV8NAJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2034 Hz - Time: 0520Z - DXCC: 236 +[26-09-2024 12:20:22] INFO DX: LZ1AG - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 2308 Hz - Time: 0520Z - DXCC: 212 +[26-09-2024 12:20:23] INFO (** New Band **) DX: IU8LLQ - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1515 Hz - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:23] INFO (** New Band **) DX: ZS1ML - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 2843 Hz - Time: 0520Z - DXCC: 462 +[26-09-2024 12:20:24] INFO DX: CT1ETX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1035 Hz - Time: 0520Z - DXCC: 272 +[26-09-2024 12:20:24] INFO (** Worked **) DX: UA6FM - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 773 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:24] INFO DX: UA6FM - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 773 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:24] INFO DX: EA1IOK - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 2638 Hz - Time: 0520Z - DXCC: 281 +[26-09-2024 12:20:25] INFO DX: IK3SCB - Spotter: IK4VET - Freq: 14063.1 - Band: 20M - Mode: CW - Comment: 10 dB 28 WPM CQ - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:25] INFO (** New Band **) DX: G0BIN - Spotter: IK4VET - Freq: 10108.0 - Band: 30M - Mode: CW - Comment: 5 dB 20 WPM CQ - Time: 0520Z - DXCC: 223 +[26-09-2024 12:20:26] INFO (** New Band **) DX: G0BIN - Spotter: OK1FCJ - Freq: 10108.0 - Band: 30M - Mode: CW - Comment: 9 dB 20 WPM CQ - Time: 0520Z - DXCC: 223 +[26-09-2024 12:20:27] INFO DX: JA6IQG - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -12 dB 2457 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:27] INFO DX: R7DX - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 6 dB 1163 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:29] INFO DX: IK3SCB - Spotter: MM0ZBH - Freq: 14063.0 - Band: 20M - Mode: CW - Comment: 9 dB 28 WPM CQ - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:29] INFO (** New Band **) DX: SP5DT - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +15 dB 439 Hz - Time: 0520Z - DXCC: 269 +[26-09-2024 12:20:30] INFO (** New Band **) DX: ZL3JT - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2010 Hz - Time: 0520Z - DXCC: 170 +[26-09-2024 12:20:30] INFO (** New Band **) DX: EA3ICF - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1200 Hz - Time: 0520Z - DXCC: 281 +[26-09-2024 12:20:30] INFO DX: R4KB - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 2844 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:31] INFO DX: 9A4ZM - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1372 Hz - Time: 0520Z - DXCC: 497 +[26-09-2024 12:20:31] INFO DX: UA3TCJ - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 680 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:32] INFO DX: OZ4TU - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 7 dB 1493 Hz - Time: 0520Z - DXCC: 221 +[26-09-2024 12:20:33] INFO DX: JF3IML - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 2765 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:34] INFO (** New Band **) DX: DO1BWS - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +15 dB 1326 Hz - Time: 0520Z - DXCC: 230 +[26-09-2024 12:20:34] INFO (** New Band **) DX: HA3PT - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 905 Hz - Time: 0520Z - DXCC: 239 +[26-09-2024 12:20:35] INFO DX: R3TKM - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 852 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:37] INFO DX: LZ3QE - Spotter: HB9DCO - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0520Z - DXCC: 212 +[26-09-2024 12:20:38] INFO DX: LZ3QE - Spotter: SE5E - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 30 dB 22 WPM CQ - Time: 0520Z - DXCC: 212 +[26-09-2024 12:20:38] INFO DX: LU1VDF - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -17 dB 1031 Hz - Time: 0520Z - DXCC: 100 +[26-09-2024 12:20:39] INFO DX: US3IM - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1189 Hz - Time: 0520Z - DXCC: 288 +[26-09-2024 12:20:40] INFO DX: RA6BX - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 1003 Hz - Time: 0520Z - DXCC: 54 +[26-09-2024 12:20:40] INFO DX: LB6DI - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1706 Hz - Time: 0520Z - DXCC: 266 +[26-09-2024 12:20:43] INFO DX: SP3LRS - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1014 Hz - Time: 0520Z - DXCC: 269 +[26-09-2024 12:20:43] INFO DX: JN3LQP - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 2566 Hz - Time: 0520Z - DXCC: 339 +[26-09-2024 12:20:44] INFO DX: W5BIB - Spotter: ZF1A - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 22 dB 23 WPM CQ - Time: 0520Z - DXCC: 291 +[26-09-2024 12:20:44] INFO DX: W5BIB - Spotter: W4KAZ - Freq: 7032.0 - Band: 40M - Mode: CW - Comment: 21 dB 23 WPM CQ - Time: 0520Z - DXCC: 291 +[26-09-2024 12:20:49] INFO (** New Band **) DX: KA9FOX - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: + 9 dB 416 Hz - Time: 0520Z - DXCC: 291 +[26-09-2024 12:20:49] INFO DX: EB3DIM - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2392 Hz - Time: 0520Z - DXCC: 281 +[26-09-2024 12:20:49] INFO DX: N0DCW - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 846 Hz - Time: 0520Z - DXCC: 291 +[26-09-2024 12:20:50] INFO (** New Mode **) DX: TM44LG - Spotter: F5LRL - Freq: 3683.0 - Band: 80M - Mode: - Comment: JN26KT<>JN26CN SE CQ - Time: 0520Z - DXCC: 227 +[26-09-2024 12:20:50] INFO DX: BH7FBP - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 1670 Hz - Time: 0520Z - DXCC: 318 +[26-09-2024 12:20:51] INFO (** New Band **) DX: IU8CEU - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -10 dB 929 Hz - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:51] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 28 dB 21 WPM NCDXF BCN - Time: 0520Z - DXCC: 997 +[26-09-2024 12:20:58] INFO (** New Band **) DX: IU8LLQ - Spotter: IQ8DO - Freq: 7074.0 - Band: 40M - Mode: CW - Comment: 05:20 19th Palazzo Reale Ca - Time: 0520Z - DXCC: 248 +[26-09-2024 12:20:59] INFO DX: DL8NBM - Spotter: MW0MUT - Freq: 10129.0 - Band: 30M - Mode: CW - Comment: 6 dB 20 WPM CQ - Time: 0521Z - DXCC: 230 +[26-09-2024 12:21:00] INFO DX: VK6QM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 741 Hz - Time: 0521Z - DXCC: 150 +[26-09-2024 12:21:03] INFO DX: R2ZC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 628 Hz - Time: 0521Z - DXCC: 54 +[26-09-2024 12:21:03] INFO DX: E75C - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 2058 Hz - Time: 0521Z - DXCC: 501 +[26-09-2024 12:21:04] INFO DX: JA4NIJ - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 2012 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:09] INFO DX: EA4CS - Spotter: W3OA - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 453 Hz - Time: 0521Z - DXCC: 281 +[26-09-2024 12:21:13] INFO DX: VK7AP - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 9 dB 718 Hz - Time: 0521Z - DXCC: 150 +[26-09-2024 12:21:13] INFO DX: LU2BA - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 2073 Hz - Time: 0521Z - DXCC: 100 +[26-09-2024 12:21:14] INFO DX: UA9ODU - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 1 dB 2379 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:14] INFO (** New Band **) DX: HB9FBT - Spotter: KM3T - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 14 dB 16 WPM CQ - Time: 0521Z - DXCC: 287 +[26-09-2024 12:21:18] INFO DX: JA4JKE - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -11 dB 2244 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:18] INFO DX: RZ9O - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 4 dB 854 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:19] INFO DX: UA9OBN - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 9 dB 1400 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:19] INFO DX: UA9MKA - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1587 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:20] INFO DX: UX3UU - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -17 dB 825 Hz - Time: 0521Z - DXCC: 288 +[26-09-2024 12:21:20] INFO DX: KH6DC - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1128 Hz - Time: 0521Z - DXCC: 110 +[26-09-2024 12:21:21] INFO DX: JL1MWI - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 2286 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:21] INFO (** Worked **) DX: BH4GBC - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 2714 Hz - Time: 0521Z - DXCC: 318 +[26-09-2024 12:21:21] INFO DX: BH4GBC - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -11 dB 2714 Hz - Time: 0521Z - DXCC: 318 +[26-09-2024 12:21:21] INFO DX: RV9DD - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 2216 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:22] INFO DX: YO4BEX - Spotter: SE5E - Freq: 14067.9 - Band: 20M - Mode: CW - Comment: 11 dB 31 WPM CQ - Time: 0521Z - DXCC: 275 +[26-09-2024 12:21:22] INFO DX: YO4BEX - Spotter: 3V8SS - Freq: 14067.9 - Band: 20M - Mode: CW - Comment: 13 dB 31 WPM CQ - Time: 0521Z - DXCC: 275 +[26-09-2024 12:21:23] INFO DX: VA3BOO - Spotter: W3OA - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 1492 Hz - Time: 0521Z - DXCC: 1 +[26-09-2024 12:21:23] INFO (** New Band **) DX: OZ6NF - Spotter: MM3NDH - Freq: 3536.0 - Band: 80M - Mode: CW - Comment: 13 dB 24 WPM CQ - Time: 0521Z - DXCC: 221 +[26-09-2024 12:21:23] INFO (** Worked **) DX: RZ3DCJ - Spotter: ET3AA - Freq: 14019.8 - Band: 20M - Mode: CW - Comment: 6 dB 22 WPM CQ - Time: 0521Z - DXCC: 54 +[26-09-2024 12:21:23] INFO DX: RZ3DCJ - Spotter: ET3AA - Freq: 14019.8 - Band: 20M - Mode: CW - Comment: 6 dB 22 WPM CQ - Time: 0521Z - DXCC: 54 +[26-09-2024 12:21:24] INFO (** New Band **) DX: WX7OR - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -14 dB 1225 Hz - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:24] INFO (** New Band **) DX: DH5BM - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 972 Hz - Time: 0521Z - DXCC: 230 +[26-09-2024 12:21:24] INFO (** New Band **) DX: EB5RR - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 1044 Hz - Time: 0521Z - DXCC: 281 +[26-09-2024 12:21:25] INFO DX: M0CKX - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1528 Hz - Time: 0521Z - DXCC: 223 +[26-09-2024 12:21:25] INFO DX: IU7HDD - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +14 dB 1758 Hz - Time: 0521Z - DXCC: 248 +[26-09-2024 12:21:26] INFO DX: I8JPO - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2235 Hz - Time: 0521Z - DXCC: 248 +[26-09-2024 12:21:26] INFO DX: F1IQH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 754 Hz - Time: 0521Z - DXCC: 227 +[26-09-2024 12:21:26] INFO DX: ZS6AF - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -19 dB 985 Hz - Time: 0521Z - DXCC: 462 +[26-09-2024 12:21:27] INFO (** New Band **) DX: OZ6NF - Spotter: MM3NDH - Freq: 3536.0 - Band: 80M - Mode: CW - Comment: 13 dB 24 WPM CQ - Time: 0521Z - DXCC: 221 +[26-09-2024 12:21:27] INFO DX: HA3KFL - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 347 Hz - Time: 0521Z - DXCC: 239 +[26-09-2024 12:21:28] INFO DX: N3FMC - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 1 dB 1809 Hz - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:28] INFO DX: SP7XIF - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 8 dB 608 Hz - Time: 0521Z - DXCC: 269 +[26-09-2024 12:21:28] INFO (** New Band **) DX: DK7ZT - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1440 Hz - Time: 0521Z - DXCC: 230 +[26-09-2024 12:21:29] INFO (** Worked **) DX: JH1CJY - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 2926 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:29] INFO DX: JH1CJY - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 2926 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:29] INFO DX: JE2UFF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 2 dB 2364 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:30] INFO DX: RW0AE - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 369 Hz - Time: 0521Z - DXCC: 15 +[26-09-2024 12:21:31] INFO (** New Band **) DX: EB2EMZ - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 2787 Hz - Time: 0521Z - DXCC: 281 +[26-09-2024 12:21:32] INFO DX: RX3ASP - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 820 Hz - Time: 0521Z - DXCC: 54 +[26-09-2024 12:21:32] INFO (** New Band **) DX: LU9DO - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1738 Hz - Time: 0521Z - DXCC: 100 +[26-09-2024 12:21:33] INFO DX: W7VHM - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 2139 Hz - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:33] INFO DX: W6WX - Spotter: VE7CC - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 10 dB 20 WPM NCDXF BCN - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:34] INFO DX: EX8KT - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +19 dB 584 Hz - Time: 0521Z - DXCC: 135 +[26-09-2024 12:21:38] INFO Spot: DX: SP1TB - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - FlexID: 5844 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: UA6HGM - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - FlexID: 5845 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: EA2CDY - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - FlexID: 5846 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: IK2QEI - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - FlexID: 5847 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: YO7CKQ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5848 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: UR5RP - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5849 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: IZ0DIB - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5850 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: CE8EIO - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5851 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: IZ7NLJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5852 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: 9A3KG - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 5854 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: UB9UCT - Spotter: DL8LAS - Freq: 18100.0 - Band: 17M - FlexID: 5855 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: UA9SY - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - FlexID: 5856 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: UN7QF - Spotter: RN4WA - Freq: 14017.0 - Band: 20M - FlexID: 5857 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: W4MJH - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - FlexID: 5858 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: OE1SGU - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - FlexID: 5859 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: VU2JCD - Spotter: VK6ANC - Freq: 28039.9 - Band: 10M - FlexID: 5860 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: EA5AYE - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 5862 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: PD1AC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 5863 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: IZ2EWN - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 5864 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: OT1V - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - FlexID: 5865 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: RA9ACA - Spotter: SM7IUN - Freq: 18100.0 - Band: 17M - FlexID: 5866 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: EA5HM - Spotter: WE9V - Freq: 10136.0 - Band: 30M - FlexID: 5867 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: EA3IMR - Spotter: WE9V - Freq: 7074.0 - Band: 40M - FlexID: 5868 deleted from database +[26-09-2024 12:21:45] INFO DX: UA3ARC - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -13 dB 1032 Hz - Time: 0521Z - DXCC: 54 +[26-09-2024 12:21:45] INFO Spot: DX: KO4YIN - Spotter: NG7M - Freq: 7074.0 - Band: 40M - FlexID: 5870 deleted from database +[26-09-2024 12:21:45] INFO Spot: DX: R4LBP - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - FlexID: 5871 deleted from database +[26-09-2024 12:21:46] INFO DX: S55OO - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 8 dB 2463 Hz - Time: 0521Z - DXCC: 499 +[26-09-2024 12:21:46] INFO DX: W6WX - Spotter: N6TV - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 26 dB 21 WPM NCDXF BCN - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:46] INFO Spot: DX: SP9LCW - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - FlexID: 5872 deleted from database +[26-09-2024 12:21:46] INFO Spot: DX: EA5XC - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - FlexID: 5873 deleted from database +[26-09-2024 12:21:46] INFO Spot: DX: RU3QR - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 5874 deleted from database +[26-09-2024 12:21:46] INFO (** New Band **) DX: EA3IMR - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 2865 Hz - Time: 0521Z - DXCC: 281 +[26-09-2024 12:21:47] INFO DX: KH6RS - Spotter: W3OA - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 15 dB 18 WPM NCDXF BCN - Time: 0521Z - DXCC: 110 +[26-09-2024 12:21:47] INFO DX: 9M2SPN - Spotter: JK1QLQ - Freq: 21013.0 - Band: 15M - Mode: CW - Comment: 0 dB 28 WPM CQ - Time: 0521Z - DXCC: 299 +[26-09-2024 12:21:47] INFO Spot: DX: DJ5IL - Spotter: OH4KA - Freq: 7024.0 - Band: 40M - FlexID: 5875 deleted from database +[26-09-2024 12:21:47] INFO Spot: DX: OA4DXZ - Spotter: KM3T - Freq: 21074.0 - Band: 15M - FlexID: 5876 deleted from database +[26-09-2024 12:21:48] INFO (** New Band **) DX: HB9EFK - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 201 Hz - Time: 0521Z - DXCC: 287 +[26-09-2024 12:21:48] INFO DX: F4AAS - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 964 Hz - Time: 0521Z - DXCC: 227 +[26-09-2024 12:21:48] INFO DX: UX3IW - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 6 dB 2497 Hz - Time: 0521Z - DXCC: 288 +[26-09-2024 12:21:48] INFO Spot: DX: DK7PE - Spotter: MM3NDH - Freq: 3510.0 - Band: 80M - FlexID: 5877 deleted from database +[26-09-2024 12:21:48] INFO Spot: DX: IZ8VYU - Spotter: W1NT - Freq: 14074.0 - Band: 20M - FlexID: 5878 deleted from database +[26-09-2024 12:21:48] INFO Spot: DX: KX8X - Spotter: W1NT - Freq: 3573.0 - Band: 80M - FlexID: 5879 deleted from database +[26-09-2024 12:21:49] INFO DX: SQ1BVG - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -20 dB 1341 Hz - Time: 0521Z - DXCC: 269 +[26-09-2024 12:21:49] INFO (** Worked **) DX: JA1JQM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 1131 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:49] INFO DX: JA1JQM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 1131 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:49] INFO Spot: DX: F5SJF - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5880 deleted from database +[26-09-2024 12:21:49] INFO Spot: DX: IU1TLG - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 5881 deleted from database +[26-09-2024 12:21:50] INFO DX: OH3YP - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 6 dB 1460 Hz - Time: 0521Z - DXCC: 224 +[26-09-2024 12:21:50] INFO DX: ZL6B - Spotter: W1NT - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 8 dB 22 WPM NCDXF BCN - Time: 0521Z - DXCC: 170 +[26-09-2024 12:21:50] INFO (** New Band **) DX: IU1TLG - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 932 Hz - Time: 0521Z - DXCC: 248 +[26-09-2024 12:21:50] INFO Spot: DX: LW1DYN - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - FlexID: 5882 deleted from database +[26-09-2024 12:21:50] INFO Spot: DX: K1GJQ - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - FlexID: 5883 deleted from database +[26-09-2024 12:21:51] INFO (** New Band **) DX: M2ET - Spotter: ZL3X - Freq: 7037.0 - Band: 40M - Mode: CW - Comment: 9 dB 14 WPM CQ - Time: 0521Z - DXCC: 223 +[26-09-2024 12:21:51] INFO DX: NA6JD - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 2421 Hz - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:51] INFO Spot: DX: DL250CDF - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 5884 deleted from database +[26-09-2024 12:21:51] INFO Spot: DX: UA3SAO - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - FlexID: 5885 deleted from database +[26-09-2024 12:21:51] INFO (** New Band **) DX: OM6APJ - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +16 dB 2746 Hz - Time: 0521Z - DXCC: 504 +[26-09-2024 12:21:52] INFO (** New Band **) DX: LA2T - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -20 dB 390 Hz - Time: 0521Z - DXCC: 266 +[26-09-2024 12:21:52] INFO Spot: DX: SV1EMX - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - FlexID: 5886 deleted from database +[26-09-2024 12:21:52] INFO Spot: DX: HB9EFK - Spotter: S50U - Freq: 7074.0 - Band: 40M - FlexID: 5887 deleted from database +[26-09-2024 12:21:52] INFO Spot: DX: K2ZMM - Spotter: S50U - Freq: 7074.0 - Band: 40M - FlexID: 5888 deleted from database +[26-09-2024 12:21:53] INFO DX: JH1TCA - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -17 dB 871 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:53] INFO (** Worked **) DX: JR4TAG - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 1326 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:53] INFO DX: JR4TAG - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -19 dB 1326 Hz - Time: 0521Z - DXCC: 339 +[26-09-2024 12:21:53] INFO Spot: DX: GJ0KYZ - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - FlexID: 5889 deleted from database +[26-09-2024 12:21:53] INFO Spot: DX: F5PIO - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - FlexID: 5890 deleted from database +[26-09-2024 12:21:53] INFO Spot: DX: JA8IDS - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - FlexID: 5891 deleted from database +[26-09-2024 12:21:54] INFO Spot: DX: F8CGL - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 5892 deleted from database +[26-09-2024 12:21:54] INFO Spot: DX: JT1YL - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - FlexID: 5893 deleted from database +[26-09-2024 12:21:55] INFO Spot: DX: IK1UGX - Spotter: ZL3X - Freq: 7010.0 - Band: 40M - FlexID: 5894 deleted from database +[26-09-2024 12:21:55] INFO Spot: DX: HC5F - Spotter: W3OA - Freq: 10136.0 - Band: 30M - FlexID: 5895 deleted from database +[26-09-2024 12:21:55] INFO Spot: DX: DK1AQ - Spotter: W3OA - Freq: 3573.5 - Band: 80M - FlexID: 5896 deleted from database +[26-09-2024 12:21:56] INFO DX: W7RPS - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 2825 Hz - Time: 0521Z - DXCC: 291 +[26-09-2024 12:21:56] INFO Spot: DX: HB9HSN - Spotter: W3OA - Freq: 10136.0 - Band: 30M - FlexID: 5897 deleted from database +[26-09-2024 12:21:56] INFO Spot: DX: SP2GK - Spotter: W3OA - Freq: 7074.0 - Band: 40M - FlexID: 5898 deleted from database +[26-09-2024 12:21:57] INFO DX: EA5HM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 1011 Hz - Time: 0521Z - DXCC: 281 +[26-09-2024 12:21:57] INFO Spot: DX: CT2HEX - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - FlexID: 5899 deleted from database +[26-09-2024 12:21:57] INFO Spot: DX: RJ7M - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - FlexID: 5900 deleted from database +[26-09-2024 12:21:57] INFO Spot: DX: KO6PB - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 5901 deleted from database +[26-09-2024 12:21:58] INFO Spot: DX: KJ4IHN - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 5902 deleted from database +[26-09-2024 12:21:58] INFO Spot: DX: 4X6TU - Spotter: DF2CK - Freq: 24930.0 - Band: 12M - FlexID: 5903 deleted from database +[26-09-2024 12:21:59] INFO Spot: DX: EA4EQ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 5905 deleted from database +[26-09-2024 12:21:59] INFO Spot: DX: DJ7XY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - FlexID: 5906 deleted from database +[26-09-2024 12:22:00] INFO DX: R100AR - Spotter: SQ5OUO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 797 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:00] INFO Spot: DX: RX6ACR - Spotter: W1NT - Freq: 7074.0 - Band: 40M - FlexID: 5907 deleted from database +[26-09-2024 12:22:00] INFO Spot: DX: OK1ZCF - Spotter: S50U - Freq: 10136.0 - Band: 30M - FlexID: 5908 deleted from database +[26-09-2024 12:22:01] INFO (** New Band **) DX: EA1FCH - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 332 Hz - Time: 0522Z - DXCC: 281 +[26-09-2024 12:22:01] INFO Spot: DX: IZ2FME - Spotter: RU9CZD - Freq: 14025.0 - Band: 20M - FlexID: 5909 deleted from database +[26-09-2024 12:22:01] INFO Spot: DX: RW3PL - Spotter: S50U - Freq: 14074.0 - Band: 20M - FlexID: 5910 deleted from database +[26-09-2024 12:22:02] INFO (** New Band **) DX: LZ2XF - Spotter: YO2MAX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -17 dB 2653 Hz - Time: 0522Z - DXCC: 212 +[26-09-2024 12:22:02] INFO Spot: DX: UR4FY - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - FlexID: 5912 deleted from database +[26-09-2024 12:22:02] INFO Spot: DX: W7RPS - Spotter: K9LC - Freq: 7074.0 - Band: 40M - FlexID: 5913 deleted from database +[26-09-2024 12:22:03] INFO DX: IZ6KPR - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -15 dB 875 Hz - Time: 0522Z - DXCC: 248 +[26-09-2024 12:22:03] INFO Spot: DX: MM0DSP - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5914 deleted from database +[26-09-2024 12:22:03] INFO Spot: DX: SV2HXV - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5915 deleted from database +[26-09-2024 12:22:03] INFO Spot: DX: HA9OA - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5916 deleted from database +[26-09-2024 12:22:04] INFO DX: AI7WP - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 1921 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:04] INFO DX: KN1R - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 2388 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:04] INFO (** New Band **) DX: DL8HB - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 2438 Hz - Time: 0522Z - DXCC: 230 +[26-09-2024 12:22:04] INFO Spot: DX: MM0HVU - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5917 deleted from database +[26-09-2024 12:22:04] INFO Spot: DX: W7MD - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - FlexID: 5918 deleted from database +[26-09-2024 12:22:05] INFO Spot: DX: EV1R - Spotter: HA8TKS - Freq: 28074.0 - Band: 10M - FlexID: 5919 deleted from database +[26-09-2024 12:22:05] INFO Spot: DX: KK7MUN - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 5920 deleted from database +[26-09-2024 12:22:05] INFO Spot: DX: LZ1YP - Spotter: MW0MUT - Freq: 14019.0 - Band: 20M - FlexID: 5921 deleted from database +[26-09-2024 12:22:07] INFO Spot: DX: SP5SZE - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - FlexID: 5922 deleted from database +[26-09-2024 12:22:07] INFO Spot: DX: US4IQ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - FlexID: 5923 deleted from database +[26-09-2024 12:22:07] INFO DX: N6FMF - Spotter: KM3T - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 7 dB 22 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:07] INFO (** New Band **) DX: EA5XC - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 1237 Hz - Time: 0522Z - DXCC: 281 +[26-09-2024 12:22:08] INFO Spot: DX: UX4IT - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - FlexID: 5924 deleted from database +[26-09-2024 12:22:08] INFO Spot: DX: R7DX - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - FlexID: 5925 deleted from database +[26-09-2024 12:22:08] INFO Spot: DX: R100AR - Spotter: W1NT - Freq: 10136.0 - Band: 30M - FlexID: 5926 deleted from database +[26-09-2024 12:22:08] INFO DX: K3CQR - Spotter: ZL4YL - Freq: 14014.9 - Band: 20M - Mode: CW - Comment: 13 dB 19 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:09] INFO Spot: DX: EA1FCH - Spotter: W1NT - Freq: 7074.0 - Band: 40M - FlexID: 5927 deleted from database +[26-09-2024 12:22:09] INFO Spot: DX: OZ1HYM - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5928 deleted from database +[26-09-2024 12:22:10] INFO Spot: DX: DH5NC - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5929 deleted from database +[26-09-2024 12:22:10] INFO Spot: DX: CO8LY - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 5930 deleted from database +[26-09-2024 12:22:10] INFO Spot: DX: KK7DRL - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - FlexID: 5931 deleted from database +[26-09-2024 12:22:11] INFO Spot: DX: F5MXH - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - FlexID: 5932 deleted from database +[26-09-2024 12:22:11] INFO Spot: DX: N7NHS - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - FlexID: 5933 deleted from database +[26-09-2024 12:22:11] INFO (** New Band **) DX: K4CAE - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: +22 dB 777 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:12] INFO Spot: DX: WK3A - Spotter: S50U - Freq: 3573.0 - Band: 80M - FlexID: 5934 deleted from database +[26-09-2024 12:22:12] INFO Spot: DX: F4HAB - Spotter: S50U - Freq: 7074.0 - Band: 40M - FlexID: 5935 deleted from database +[26-09-2024 12:22:12] INFO Spot: DX: RA6WF - Spotter: S50U - Freq: 10136.0 - Band: 30M - FlexID: 5936 deleted from database +[26-09-2024 12:22:12] INFO (** New Band **) DX: F1MBL - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1535 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:12] INFO DX: DL250CDF - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1623 Hz - Time: 0522Z - DXCC: 230 +[26-09-2024 12:22:13] INFO Spot: DX: HB9FBT - Spotter: LZ5DI - Freq: 7022.0 - Band: 40M - FlexID: 5937 deleted from database +[26-09-2024 12:22:13] INFO Spot: DX: RA3VGS - Spotter: R9IR - Freq: 14004.8 - Band: 20M - FlexID: 5938 deleted from database +[26-09-2024 12:22:13] INFO (** Worked **) DX: RU3QR - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1401 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:13] INFO DX: RU3QR - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 1 dB 1401 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:13] INFO DX: RZ0SW - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1334 Hz - Time: 0522Z - DXCC: 15 +[26-09-2024 12:22:14] INFO Spot: DX: RA3YAO - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - FlexID: 5939 deleted from database +[26-09-2024 12:22:14] INFO Spot: DX: JI8AQC - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - FlexID: 5940 deleted from database +[26-09-2024 12:22:14] INFO DX: KO4YIN - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1702 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:15] INFO Spot: DX: SM5YOC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 5942 deleted from database +[26-09-2024 12:22:15] INFO DX: VE7WGW - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 608 Hz - Time: 0522Z - DXCC: 1 +[26-09-2024 12:22:16] INFO Spot: DX: ES2AJ - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 5943 deleted from database +[26-09-2024 12:22:16] INFO Spot: DX: NP3DM - Spotter: WE9V - Freq: 14074.0 - Band: 20M - FlexID: 5944 deleted from database +[26-09-2024 12:22:16] INFO Spot: DX: WA6PPG - Spotter: WE9V - Freq: 14035.6 - Band: 20M - FlexID: 5945 deleted from database +[26-09-2024 12:22:16] INFO (** Worked **) DX: US4IQ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1990 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:16] INFO DX: US4IQ - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1990 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:16] INFO DX: VK6RBP - Spotter: VK2GEL - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 19 dB 19 WPM NCDXF BCN - Time: 0522Z - DXCC: 150 +[26-09-2024 12:22:17] INFO Spot: DX: KK7OLA - Spotter: WE9V - Freq: 7074.0 - Band: 40M - FlexID: 5946 deleted from database +[26-09-2024 12:22:17] INFO (** New Mode **) DX: NP3DM - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 6 dB 1544 Hz - Time: 0522Z - DXCC: 202 +[26-09-2024 12:22:17] INFO DX: IZ8VYU - Spotter: W1NT - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1790 Hz - Time: 0522Z - DXCC: 248 +[26-09-2024 12:22:18] INFO Spot: DX: MW7TTA - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5948 deleted from database +[26-09-2024 12:22:18] INFO Spot: DX: K8BCO - Spotter: KM3T - Freq: 1840.0 - Band: 17M - FlexID: 5949 deleted from database +[26-09-2024 12:22:18] INFO Spot: DX: VE2OPC - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - FlexID: 5950 deleted from database +[26-09-2024 12:22:18] INFO DX: RX3VF - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 756 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:18] INFO DX: UX4IT - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2732 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:18] INFO DX: NE9U - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 2492 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:19] INFO Spot: DX: PY8WW - Spotter: S50U - Freq: 10136.0 - Band: 30M - FlexID: 5951 deleted from database +[26-09-2024 12:22:19] INFO Spot: DX: SQ4CTS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 5952 deleted from database +[26-09-2024 12:22:20] INFO Spot: DX: 9A1CC - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - FlexID: 5953 deleted from database +[26-09-2024 12:22:20] INFO Spot: DX: AG6X - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - FlexID: 5954 deleted from database +[26-09-2024 12:22:20] INFO Spot: DX: F1MBL - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - FlexID: 5955 deleted from database +[26-09-2024 12:22:20] INFO DX: JF0HEN - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 1112 Hz - Time: 0522Z - DXCC: 339 +[26-09-2024 12:22:20] INFO DX: JA4DLF - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1635 Hz - Time: 0522Z - DXCC: 339 +[26-09-2024 12:22:21] INFO Spot: DX: N7NNZ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - FlexID: 5956 deleted from database +[26-09-2024 12:22:21] INFO Spot: DX: R3YAR - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - FlexID: 5957 deleted from database +[26-09-2024 12:22:21] INFO DX: US5EAA - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 1815 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:21] INFO DX: VK2GRT - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -14 dB 687 Hz - Time: 0522Z - DXCC: 150 +[26-09-2024 12:22:22] INFO (** Worked **) DX: BD2LA - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 2 dB 2258 Hz - Time: 0522Z - DXCC: 318 +[26-09-2024 12:22:22] INFO DX: BD2LA - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: + 2 dB 2258 Hz - Time: 0522Z - DXCC: 318 +[26-09-2024 12:22:22] INFO Spot: DX: PD1BER - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - FlexID: 5959 deleted from database +[26-09-2024 12:22:22] INFO Spot: DX: KF0IPD - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - FlexID: 5960 deleted from database +[26-09-2024 12:22:22] INFO DX: JA5KJD - Spotter: JI1HFJ - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: - 4 dB 2879 Hz - Time: 0522Z - DXCC: 339 +[26-09-2024 12:22:22] INFO DX: BD4TEX - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 9 dB 2432 Hz - Time: 0522Z - DXCC: 318 +[26-09-2024 12:22:23] INFO Spot: DX: K2PZB - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 5961 deleted from database +[26-09-2024 12:22:23] INFO Spot: DX: XE1ACA - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 5962 deleted from database +[26-09-2024 12:22:23] INFO DX: VK3FS - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -21 dB 1415 Hz - Time: 0522Z - DXCC: 150 +[26-09-2024 12:22:23] INFO (** Worked **) DX: RA9JM - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 5 dB 1208 Hz - Time: 0522Z - DXCC: 15 +[26-09-2024 12:22:23] INFO DX: RA9JM - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 5 dB 1208 Hz - Time: 0522Z - DXCC: 15 +[26-09-2024 12:22:24] INFO (** New Band **) DX: UR4FY - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 740 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:24] INFO Spot: DX: W5XO - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 5963 deleted from database +[26-09-2024 12:22:24] INFO Spot: DX: KJ4GK - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 5964 deleted from database +[26-09-2024 12:22:24] INFO Spot: DX: R4IK - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - FlexID: 5965 deleted from database +[26-09-2024 12:22:24] INFO DX: WR250MW - Spotter: MM0ZBH - Freq: 7037.5 - Band: 40M - Mode: CW - Comment: 3 dB 16 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:24] INFO (** New Band **) DX: MW7TTA - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -19 dB 1610 Hz - Time: 0522Z - DXCC: 294 +[26-09-2024 12:22:25] INFO Spot: DX: RC5F - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - FlexID: 5966 deleted from database +[26-09-2024 12:22:25] INFO DX: WA7GIJ - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +18 dB 1139 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:25] INFO DX: KK7HYK - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 786 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:26] INFO DX: UY5QJ - Spotter: RK3TD - Freq: 14005.0 - Band: 20M - Mode: CW - Comment: 26 dB 25 WPM CQ - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:26] INFO Spot: DX: 4U1UN - Spotter: W6YX - Freq: 14100.0 - Band: 20M - FlexID: 5967 deleted from database +[26-09-2024 12:22:26] INFO Spot: DX: W8AIT - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 5968 deleted from database +[26-09-2024 12:22:26] INFO Spot: DX: ZL3GK - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 5969 deleted from database +[26-09-2024 12:22:26] INFO DX: UN3G - Spotter: YO2MAX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: + 0 dB 469 Hz - Time: 0522Z - DXCC: 130 +[26-09-2024 12:22:26] INFO DX: F6BLP - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 1378 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:27] INFO DX: F6FHZ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 1576 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:27] INFO Spot: DX: KX8XX - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5970 deleted from database +[26-09-2024 12:22:27] INFO Spot: DX: KF0HEG - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 5971 deleted from database +[26-09-2024 12:22:27] INFO DX: SV1EMX - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 2683 Hz - Time: 0522Z - DXCC: 236 +[26-09-2024 12:22:27] INFO (** New Band **) DX: OZ1HYM - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +12 dB 915 Hz - Time: 0522Z - DXCC: 221 +[26-09-2024 12:22:28] INFO Spot: DX: 9A2AJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 5972 deleted from database +[26-09-2024 12:22:28] INFO Spot: DX: V31DL - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 5973 deleted from database +[26-09-2024 12:22:28] INFO (** New Band **) DX: EA1AHP - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 1704 Hz - Time: 0522Z - DXCC: 281 +[26-09-2024 12:22:28] INFO (** New Band **) DX: MM0KQC - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 2379 Hz - Time: 0522Z - DXCC: 279 +[26-09-2024 12:22:28] INFO (** New Band **) DX: F5PIO - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -13 dB 1530 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:29] INFO Spot: DX: MM0KQC - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 5974 deleted from database +[26-09-2024 12:22:29] INFO Spot: DX: KB8OTK - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 5975 deleted from database +[26-09-2024 12:22:29] INFO Spot: DX: WB5BHS - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 5976 deleted from database +[26-09-2024 12:22:29] INFO (** New Band **) DX: OE1SGU - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -15 dB 1641 Hz - Time: 0522Z - DXCC: 206 +[26-09-2024 12:22:29] INFO (** New Band **) DX: DG2YIQ - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 2 dB 913 Hz - Time: 0522Z - DXCC: 230 +[26-09-2024 12:22:30] INFO (** New Band **) DX: DO1MY - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 2303 Hz - Time: 0522Z - DXCC: 230 +[26-09-2024 12:22:30] INFO Spot: DX: ON7HM - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 5977 deleted from database +[26-09-2024 12:22:30] INFO Spot: DX: KC2VKD - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 5978 deleted from database +[26-09-2024 12:22:30] INFO DX: PD1BER - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 2208 Hz - Time: 0522Z - DXCC: 263 +[26-09-2024 12:22:30] INFO DX: SQ9EJ - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +17 dB 599 Hz - Time: 0522Z - DXCC: 269 +[26-09-2024 12:22:31] INFO Spot: DX: IC8TEM - Spotter: G4IRN - Freq: 10136.0 - Band: 30M - FlexID: 5979 deleted from database +[26-09-2024 12:22:31] INFO Spot: DX: G0JNH - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 5980 deleted from database +[26-09-2024 12:22:31] INFO Spot: DX: AD0K - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - FlexID: 5981 deleted from database +[26-09-2024 12:22:31] INFO DX: LW1DYN - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 759 Hz - Time: 0522Z - DXCC: 100 +[26-09-2024 12:22:31] INFO (** Worked **) DX: V31DL - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +22 dB 481 Hz - Time: 0522Z - DXCC: 66 +[26-09-2024 12:22:31] INFO DX: V31DL - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +22 dB 481 Hz - Time: 0522Z - DXCC: 66 +[26-09-2024 12:22:32] INFO DX: KK7OLA - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1005 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:32] INFO Spot: DX: W3UA - Spotter: VE3EID - Freq: 10136.0 - Band: 30M - FlexID: 5982 deleted from database +[26-09-2024 12:22:32] INFO Spot: DX: F5POJ - Spotter: SE5E - Freq: 7037.0 - Band: 40M - FlexID: 5983 deleted from database +[26-09-2024 12:22:32] INFO (** New Band **) DX: F4HAB - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 390 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:32] INFO (** New Band **) DX: ZL2AGY - Spotter: DM5GG - Freq: 10109.0 - Band: 30M - Mode: CW - Comment: 17 dB 20 WPM CQ - Time: 0522Z - DXCC: 170 +[26-09-2024 12:22:33] INFO Spot: DX: N3GX - Spotter: K9LC - Freq: 7074.0 - Band: 40M - FlexID: 5984 deleted from database +[26-09-2024 12:22:33] INFO Spot: DX: LX1TI - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - FlexID: 5985 deleted from database +[26-09-2024 12:22:33] INFO Spot: DX: EC1D - Spotter: LB9KJ - Freq: 3573.0 - Band: 80M - FlexID: 5986 deleted from database +[26-09-2024 12:22:33] INFO DX: HB9HSN - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1888 Hz - Time: 0522Z - DXCC: 287 +[26-09-2024 12:22:33] INFO DX: JF3IML - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 2754 Hz - Time: 0522Z - DXCC: 339 +[26-09-2024 12:22:34] INFO (** New Band **) DX: LZ5UY - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 2463 Hz - Time: 0522Z - DXCC: 212 +[26-09-2024 12:22:34] INFO Spot: DX: G0KPH - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - FlexID: 5987 deleted from database +[26-09-2024 12:22:34] INFO Spot: DX: OH2HOT - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - FlexID: 5988 deleted from database +[26-09-2024 12:22:34] INFO Spot: DX: IU8NKW - Spotter: YO2MAX - Freq: 3570.0 - Band: 80M - FlexID: 5989 deleted from database +[26-09-2024 12:22:34] INFO DX: W7MD - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1925 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:34] INFO DX: KJ7WLL - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 622 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:35] INFO DX: ND3L - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1022 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:35] INFO Spot: DX: KO4ZML - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 5990 deleted from database +[26-09-2024 12:22:35] INFO Spot: DX: VK3MLT - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - FlexID: 5991 deleted from database +[26-09-2024 12:22:35] INFO DX: K2ZMM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 1199 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:35] INFO DX: UT4PA - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 1800 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:36] INFO Spot: DX: PA0ARR - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5992 deleted from database +[26-09-2024 12:22:36] INFO Spot: DX: KD2YQS - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - FlexID: 5993 deleted from database +[26-09-2024 12:22:36] INFO Spot: DX: A41CK - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - FlexID: 5994 deleted from database +[26-09-2024 12:22:36] INFO DX: KD5HUS - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 2771 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:36] INFO DX: IZ8EYN - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2335 Hz - Time: 0522Z - DXCC: 248 +[26-09-2024 12:22:37] INFO DX: AD0K - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -20 dB 1475 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:37] INFO Spot: DX: F1GPL - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5995 deleted from database +[26-09-2024 12:22:37] INFO Spot: DX: RV3ID - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 5996 deleted from database +[26-09-2024 12:22:37] INFO DX: RU0LL - Spotter: UA3ARC - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: +0 dB 1350 Hz TNX QSO 7 - Time: 0522Z - DXCC: 15 +[26-09-2024 12:22:37] INFO (** New Band **) DX: OE7EDI - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -21 dB 1788 Hz - Time: 0522Z - DXCC: 206 +[26-09-2024 12:22:38] INFO Spot: DX: ON3URT - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - FlexID: 5997 deleted from database +[26-09-2024 12:22:38] INFO Spot: DX: SP3WKW - Spotter: W3OA - Freq: 10136.0 - Band: 30M - FlexID: 5998 deleted from database +[26-09-2024 12:22:38] INFO Spot: DX: N3JHB - Spotter: W3OA - Freq: 10136.0 - Band: 30M - FlexID: 5999 deleted from database +[26-09-2024 12:22:38] INFO DX: HB9TKB - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 287 Hz - Time: 0522Z - DXCC: 287 +[26-09-2024 12:22:38] INFO DX: W3UA - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 1390 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:39] INFO DX: UA3PRS - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 8 dB 2617 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:39] INFO Spot: DX: E75W - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6000 deleted from database +[26-09-2024 12:22:39] INFO Spot: DX: LZ5UY - Spotter: W3OA - Freq: 7074.0 - Band: 40M - FlexID: 6001 deleted from database +[26-09-2024 12:22:39] INFO Spot: DX: SP3DOF - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - FlexID: 6002 deleted from database +[26-09-2024 12:22:39] INFO (** New Band **) DX: IZ0ONL - Spotter: MM3NDH - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 7 dB 20 WPM CQ - Time: 0522Z - DXCC: 248 +[26-09-2024 12:22:39] INFO DX: N3GX - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1001 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:40] INFO DX: IZ7NLJ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 2 dB 2255 Hz - Time: 0522Z - DXCC: 248 +[26-09-2024 12:22:40] INFO Spot: DX: UA3WG - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6003 deleted from database +[26-09-2024 12:22:40] INFO Spot: DX: F1PBZ - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - FlexID: 6004 deleted from database +[26-09-2024 12:22:40] INFO DX: UA9SY - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1605 Hz - Time: 0522Z - DXCC: 15 +[26-09-2024 12:22:40] INFO (** New Band **) DX: OE6OCG - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +18 dB 2434 Hz - Time: 0522Z - DXCC: 206 +[26-09-2024 12:22:41] INFO Spot: DX: IZ8GXE - Spotter: OE9GHV - Freq: 3573.0 - Band: 80M - FlexID: 6005 deleted from database +[26-09-2024 12:22:41] INFO Spot: DX: 4Z1KN - Spotter: OE9GHV - Freq: 14074.0 - Band: 20M - FlexID: 6006 deleted from database +[26-09-2024 12:22:41] INFO Spot: DX: A41ZZ - Spotter: OE9GHV - Freq: 28074.0 - Band: 10M - FlexID: 6007 deleted from database +[26-09-2024 12:22:41] INFO (** New Band **) DX: F1VEV - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +13 dB 1575 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:41] INFO DX: S57A - Spotter: G4IRN - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 9 dB 2168 Hz - Time: 0522Z - DXCC: 499 +[26-09-2024 12:22:42] INFO DX: KF0GE - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 725 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:42] INFO Spot: DX: EA1FCH - Spotter: K9IMM - Freq: 3573.0 - Band: 80M - FlexID: 6008 deleted from database +[26-09-2024 12:22:42] INFO Spot: DX: LZ3AD - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - FlexID: 6009 deleted from database +[26-09-2024 12:22:42] INFO DX: ZR1ADI - Spotter: WE9V - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -16 dB 2121 Hz - Time: 0522Z - DXCC: 462 +[26-09-2024 12:22:42] INFO DX: W4CHI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1499 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:43] INFO Spot: DX: OH7BDI - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - FlexID: 6010 deleted from database +[26-09-2024 12:22:43] INFO Spot: DX: W6WX - Spotter: N6TV - Freq: 14100.0 - Band: 20M - FlexID: 6011 deleted from database +[26-09-2024 12:22:43] INFO Spot: DX: R7DX - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - FlexID: 6012 deleted from database +[26-09-2024 12:22:43] INFO (** New Band **) DX: 9A2GA - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1196 Hz - Time: 0522Z - DXCC: 497 +[26-09-2024 12:22:43] INFO (** New Band **) DX: M1FJG - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -14 dB 682 Hz - Time: 0522Z - DXCC: 223 +[26-09-2024 12:22:44] INFO DX: UT4LK - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 3 dB 2744 Hz - Time: 0522Z - DXCC: 288 +[26-09-2024 12:22:44] INFO Spot: DX: HA3FIC - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - FlexID: 6013 deleted from database +[26-09-2024 12:22:44] INFO Spot: DX: EW3DY - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - FlexID: 6014 deleted from database +[26-09-2024 12:22:44] INFO DX: SM7WNM - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 1300 Hz - Time: 0522Z - DXCC: 284 +[26-09-2024 12:22:44] INFO DX: OH2HOT - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -17 dB 2391 Hz - Time: 0522Z - DXCC: 224 +[26-09-2024 12:22:45] INFO (** New Band **) DX: DK8IT - Spotter: SQ5J - Freq: 7021.0 - Band: 40M - Mode: CW - Comment: 9 dB 29 WPM CQ - Time: 0522Z - DXCC: 230 +[26-09-2024 12:22:45] INFO Spot: DX: KS1A - Spotter: NG7M - Freq: 10136.0 - Band: 30M - FlexID: 6015 deleted from database +[26-09-2024 12:22:45] INFO Spot: DX: EA3CU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6016 deleted from database +[26-09-2024 12:22:45] INFO Spot: DX: KF0GE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6017 deleted from database +[26-09-2024 12:22:45] INFO DX: R3KNL - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -11 dB 1590 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:46] INFO (** New Band **) DX: KX8X - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +17 dB 1645 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:46] INFO Spot: DX: KS1A - Spotter: KM3T - Freq: 18100.0 - Band: 17M - FlexID: 6018 deleted from database +[26-09-2024 12:22:46] INFO Spot: DX: VE3CGD - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6019 deleted from database +[26-09-2024 12:22:46] INFO (** New Band **) DX: F5SJF - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -20 dB 2243 Hz - Time: 0522Z - DXCC: 227 +[26-09-2024 12:22:46] INFO DX: SV3AUW - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1422 Hz - Time: 0522Z - DXCC: 236 +[26-09-2024 12:22:47] INFO (** New Mode **) DX: NP3DM - Spotter: VE3EID - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 1824 Hz - Time: 0522Z - DXCC: 202 +[26-09-2024 12:22:47] INFO Spot: DX: HA3FMR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6020 deleted from database +[26-09-2024 12:22:47] INFO Spot: DX: DL6ZOG - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6021 deleted from database +[26-09-2024 12:22:47] INFO Spot: DX: EA9ACF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6022 deleted from database +[26-09-2024 12:22:47] INFO (** Worked **) DX: AG6X - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1941 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:47] INFO DX: AG6X - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1941 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:48] INFO DX: HB9HSN - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 1 dB 1141 Hz - Time: 0522Z - DXCC: 287 +[26-09-2024 12:22:48] INFO Spot: DX: IU1TKT - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6023 deleted from database +[26-09-2024 12:22:48] INFO Spot: DX: EA8TL - Spotter: ZF1A - Freq: 21074.0 - Band: 15M - FlexID: 6024 deleted from database +[26-09-2024 12:22:48] INFO Spot: DX: DJ1AA - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6025 deleted from database +[26-09-2024 12:22:48] INFO (** New Band **) DX: YO8AY - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 9 dB 1519 Hz - Time: 0522Z - DXCC: 275 +[26-09-2024 12:22:48] INFO DX: PA0ARR - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1349 Hz - Time: 0522Z - DXCC: 263 +[26-09-2024 12:22:49] INFO (** New Band **) DX: EA1FCH - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 6 dB 648 Hz - Time: 0522Z - DXCC: 281 +[26-09-2024 12:22:49] INFO Spot: DX: OK4FX - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6026 deleted from database +[26-09-2024 12:22:49] INFO Spot: DX: E74K - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6027 deleted from database +[26-09-2024 12:22:49] INFO DX: PD1ALW - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -10 dB 1354 Hz - Time: 0522Z - DXCC: 263 +[26-09-2024 12:22:49] INFO DX: 9A5TDL - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 2439 Hz - Time: 0522Z - DXCC: 497 +[26-09-2024 12:22:50] INFO DX: VE2OPC - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 7 dB 1093 Hz - Time: 0522Z - DXCC: 1 +[26-09-2024 12:22:50] INFO Spot: DX: LZ6LZ - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6028 deleted from database +[26-09-2024 12:22:50] INFO Spot: DX: YO7BPC - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6029 deleted from database +[26-09-2024 12:22:50] INFO DX: UA3LEO - Spotter: VU2CPL - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -13 dB 1220 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:51] INFO (** Worked **) DX: W6RJM - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 619 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:51] INFO DX: W6RJM - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 619 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:51] INFO Spot: DX: EA7DHT - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6030 deleted from database +[26-09-2024 12:22:51] INFO Spot: DX: J88BTI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6031 deleted from database +[26-09-2024 12:22:51] INFO Spot: DX: VK6WX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6032 deleted from database +[26-09-2024 12:22:51] INFO DX: EA4EQ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1264 Hz - Time: 0522Z - DXCC: 281 +[26-09-2024 12:22:51] INFO DX: W5BIB - Spotter: KP3CW - Freq: 14032.0 - Band: 20M - Mode: CW - Comment: 11 dB 23 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:52] INFO Spot: DX: WA3MH - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - FlexID: 6033 deleted from database +[26-09-2024 12:22:52] INFO Spot: DX: OK1LN - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 6034 deleted from database +[26-09-2024 12:22:53] INFO DX: GL7UPO - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -23 dB 1220 Hz - Time: 0522Z - DXCC: 1000 +[26-09-2024 12:22:53] INFO Spot: DX: ON2BID - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - FlexID: 6035 deleted from database +[26-09-2024 12:22:53] INFO Spot: DX: RA0SCA - Spotter: SQ5OUO - Freq: 18100.0 - Band: 17M - FlexID: 6036 deleted from database +[26-09-2024 12:22:53] INFO Spot: DX: JR5PDV - Spotter: JN1ILK - Freq: 10128.0 - Band: 30M - FlexID: 6037 deleted from database +[26-09-2024 12:22:53] INFO (** New Band **) DX: EA9PB - Spotter: IU1TKT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -06 dB from IM75 - Time: 0522Z - DXCC: 32 +[26-09-2024 12:22:53] INFO (** New Band **) DX: OK0EN - Spotter: DF2CK - Freq: 3600.0 - Band: 80M - Mode: CW - Comment: 9 dB 10 WPM BEACON - Time: 0522Z - DXCC: 503 +[26-09-2024 12:22:54] INFO DX: W5BIB - Spotter: NT6Q - Freq: 14032.0 - Band: 20M - Mode: CW - Comment: 18 dB 23 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:54] INFO Spot: DX: OH2CLX - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - FlexID: 6038 deleted from database +[26-09-2024 12:22:54] INFO Spot: DX: IK4TVP - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6039 deleted from database +[26-09-2024 12:22:54] INFO Spot: DX: SV3AUW - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6040 deleted from database +[26-09-2024 12:22:54] INFO (** New Band **) DX: VA7LDT - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 6 dB 720 Hz - Time: 0522Z - DXCC: 1 +[26-09-2024 12:22:55] INFO (** New Band **) DX: PY8WW - Spotter: WA7LNW - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 5 dB 2109 Hz - Time: 0522Z - DXCC: 108 +[26-09-2024 12:22:55] INFO Spot: DX: 4Z1TL - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6041 deleted from database +[26-09-2024 12:22:55] INFO Spot: DX: DL3OI - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6042 deleted from database +[26-09-2024 12:22:55] INFO DX: R7NO - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1838 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:55] INFO DX: WA6DNP - Spotter: WE9V - Freq: 14052.0 - Band: 20M - Mode: CW - Comment: 10 dB 15 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:56] INFO DX: A41CK - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 1743 Hz - Time: 0522Z - DXCC: 370 +[26-09-2024 12:22:56] INFO Spot: DX: R1AV - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - FlexID: 6043 deleted from database +[26-09-2024 12:22:56] INFO Spot: DX: MI0OBC - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - FlexID: 6044 deleted from database +[26-09-2024 12:22:56] INFO Spot: DX: R5BD - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6045 deleted from database +[26-09-2024 12:22:56] INFO DX: WA6DNP - Spotter: KM3T - Freq: 14052.0 - Band: 20M - Mode: CW - Comment: 2 dB 15 WPM CQ - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:57] INFO Spot: DX: ES5NC - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6046 deleted from database +[26-09-2024 12:22:57] INFO Spot: DX: RU3X - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 6047 deleted from database +[26-09-2024 12:22:57] INFO Spot: DX: IK4HPS - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 6048 deleted from database +[26-09-2024 12:22:58] INFO DX: R1TM - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2382 Hz - Time: 0522Z - DXCC: 54 +[26-09-2024 12:22:58] INFO Spot: DX: SP8LM - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 6049 deleted from database +[26-09-2024 12:22:58] INFO Spot: DX: OH6FSO - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 6050 deleted from database +[26-09-2024 12:22:59] INFO DX: N3JHB - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 1568 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:22:59] INFO Spot: DX: SP5GRM - Spotter: F6KGL - Freq: 21074.0 - Band: 15M - FlexID: 6051 deleted from database +[26-09-2024 12:22:59] INFO Spot: DX: US5IIK - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6052 deleted from database +[26-09-2024 12:22:59] INFO Spot: DX: EA5D - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6053 deleted from database +[26-09-2024 12:22:59] INFO DX: KD2YXS - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -15 dB 1637 Hz - Time: 0522Z - DXCC: 291 +[26-09-2024 12:23:00] INFO DX: JE7MRX - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 821 Hz - Time: 0522Z - DXCC: 339 +[26-09-2024 12:23:00] INFO Spot: DX: F5CKQ - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - FlexID: 6054 deleted from database +[26-09-2024 12:23:00] INFO Spot: DX: IK4LZH - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - FlexID: 6055 deleted from database +[26-09-2024 12:23:00] INFO (** New Band **) DX: CO8LY - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: +16 dB 1353 Hz - Time: 0522Z - DXCC: 70 +[26-09-2024 12:23:01] INFO Spot: DX: K4ZH - Spotter: WE9V - Freq: 10136.0 - Band: 30M - FlexID: 6056 deleted from database +[26-09-2024 12:23:01] INFO Spot: DX: CA3TSK - Spotter: WE9V - Freq: 7074.0 - Band: 40M - FlexID: 6057 deleted from database +[26-09-2024 12:23:01] INFO Spot: DX: EC3A - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - FlexID: 6058 deleted from database +[26-09-2024 12:23:02] INFO Spot: DX: RU3FM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 6059 deleted from database +[26-09-2024 12:23:03] INFO Spot: DX: VA2RB - Spotter: TI7W - Freq: 14015.0 - Band: 20M - FlexID: 6061 deleted from database +[26-09-2024 12:23:03] INFO Spot: DX: ON3SLK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6062 deleted from database +[26-09-2024 12:23:03] INFO Spot: DX: N3UL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6063 deleted from database +[26-09-2024 12:23:04] INFO Spot: DX: N1NRL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6064 deleted from database +[26-09-2024 12:23:04] INFO Spot: DX: D2UY - Spotter: KM3T - Freq: 18100.0 - Band: 17M - FlexID: 6065 deleted from database +[26-09-2024 12:23:04] INFO Spot: DX: 2E0EPB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6066 deleted from database +[26-09-2024 12:23:04] INFO Spot: DX: KG6PH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6067 deleted from database +[26-09-2024 12:23:05] INFO (** New Band **) DX: SV2CLJ - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 957 Hz - Time: 0523Z - DXCC: 236 +[26-09-2024 12:23:05] INFO Spot: DX: SP2FAP - Spotter: LZ5DI - Freq: 10107.5 - Band: 30M - FlexID: 6068 deleted from database +[26-09-2024 12:23:05] INFO Spot: DX: IU5NWT - Spotter: S50U - Freq: 3573.0 - Band: 80M - FlexID: 6069 deleted from database +[26-09-2024 12:23:05] INFO DX: SP2GK - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -22 dB 2603 Hz - Time: 0523Z - DXCC: 269 +[26-09-2024 12:23:06] INFO DX: KG5FBP - Spotter: WE9V - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 8 dB 1594 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:06] INFO DX: N7NNZ - Spotter: K7CO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 5 dB 453 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:06] INFO Spot: DX: W6WX - Spotter: VE7CC - Freq: 18110.0 - Band: 17M - FlexID: 6070 deleted from database +[26-09-2024 12:23:06] INFO Spot: DX: WI7P - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6071 deleted from database +[26-09-2024 12:23:07] INFO Spot: DX: AA4EU - Spotter: HA1VHF - Freq: 14007.8 - Band: 20M - FlexID: 6072 deleted from database +[26-09-2024 12:23:07] INFO Spot: DX: CD6SNT - Spotter: N6TV - Freq: 7074.0 - Band: 40M - FlexID: 6073 deleted from database +[26-09-2024 12:23:08] INFO Spot: DX: JA8IER - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 6074 deleted from database +[26-09-2024 12:23:08] INFO Spot: DX: CT3MD - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6075 deleted from database +[26-09-2024 12:23:08] INFO Spot: DX: ZL6B - Spotter: KM3T - Freq: 14100.0 - Band: 20M - FlexID: 6076 deleted from database +[26-09-2024 12:23:08] INFO (** New Band **) DX: Z32LM - Spotter: EA2RCF - Freq: 7011.3 - Band: 40M - Mode: CW - Comment: 9 dB 16 WPM CQ - Time: 0523Z - DXCC: 502 +[26-09-2024 12:23:09] INFO Spot: DX: HI8R - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6077 deleted from database +[26-09-2024 12:23:09] INFO Spot: DX: AA6AA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6078 deleted from database +[26-09-2024 12:23:09] INFO DX: K8BCO - Spotter: KM3T - Freq: 1840.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 1482 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:09] INFO (** New Band **) DX: F1PBZ - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 827 Hz - Time: 0523Z - DXCC: 227 +[26-09-2024 12:23:10] INFO DX: KG6PH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 364 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:10] INFO Spot: DX: IW3IEH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6079 deleted from database +[26-09-2024 12:23:10] INFO Spot: DX: RN3GG - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - FlexID: 6080 deleted from database +[26-09-2024 12:23:10] INFO Spot: DX: VA7LDT - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - FlexID: 6081 deleted from database +[26-09-2024 12:23:10] INFO (** New Band **) DX: IW3IEH - Spotter: VE3EID - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1626 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:11] INFO DX: JR5PDV - Spotter: JJ2VLY - Freq: 10128.0 - Band: 30M - Mode: CW - Comment: 38 dB 20 WPM CQ - Time: 0523Z - DXCC: 339 +[26-09-2024 12:23:11] INFO Spot: DX: DK3TNA - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - FlexID: 6082 deleted from database +[26-09-2024 12:23:11] INFO Spot: DX: YS1JFE - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - FlexID: 6083 deleted from database +[26-09-2024 12:23:11] INFO Spot: DX: EA9PB - Spotter: LB9KJ - Freq: 7074.0 - Band: 40M - FlexID: 6084 deleted from database +[26-09-2024 12:23:12] INFO Spot: DX: LY3PW - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6085 deleted from database +[26-09-2024 12:23:12] INFO Spot: DX: UA3IKI - Spotter: YO2MAX - Freq: 21074.0 - Band: 15M - FlexID: 6086 deleted from database +[26-09-2024 12:23:13] INFO Spot: DX: KG4JPL - Spotter: EA5D - Freq: 7075.0 - Band: 40M - FlexID: 6060 deleted from database +[26-09-2024 12:23:13] INFO Spot: DX: RZ3DUB - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - FlexID: 6087 deleted from database +[26-09-2024 12:23:13] INFO Spot: DX: KH6RS - Spotter: KA7OEI - Freq: 18110.0 - Band: 17M - FlexID: 6088 deleted from database +[26-09-2024 12:23:14] INFO DX: 4X6TU - Spotter: G4IRN - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 5 dB 23 WPM NCDXF BCN - Time: 0523Z - DXCC: 997 +[26-09-2024 12:23:14] INFO Spot: DX: IW3BYL - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - FlexID: 6089 deleted from database +[26-09-2024 12:23:14] INFO Spot: DX: PZ1EW - Spotter: WE9V - Freq: 3573.0 - Band: 80M - FlexID: 6090 deleted from database +[26-09-2024 12:23:15] INFO (** New Band **) DX: CA3TSK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2645 Hz - Time: 0523Z - DXCC: 112 +[26-09-2024 12:23:15] INFO Spot: DX: VE6CV - Spotter: N6TV - Freq: 10136.0 - Band: 30M - FlexID: 6091 deleted from database +[26-09-2024 12:23:15] INFO Spot: DX: BD6RN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 6092 deleted from database +[26-09-2024 12:23:15] INFO (** New Band **) DX: IU8NKW - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 3 dB 882 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:16] INFO DX: W5XO - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +10 dB 1356 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:16] INFO DX: KJ4GK - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1905 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:16] INFO Spot: DX: KG5FBP - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6093 deleted from database +[26-09-2024 12:23:16] INFO Spot: DX: K6IRK - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 6094 deleted from database +[26-09-2024 12:23:16] INFO DX: WB8UCD - Spotter: K7CO - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 821 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:17] INFO Spot: DX: 4V1SAVANNAH - Spotter: W1NT - Freq: 10136.0 - Band: 30M - FlexID: 6095 deleted from database +[26-09-2024 12:23:17] INFO Spot: DX: G8IXM - Spotter: S50U - Freq: 7074.0 - Band: 40M - FlexID: 6096 deleted from database +[26-09-2024 12:23:17] INFO Spot: DX: KN6UDK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - FlexID: 6097 deleted from database +[26-09-2024 12:23:17] INFO (** New Band **) DX: ON7HM - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -12 dB 2016 Hz - Time: 0523Z - DXCC: 209 +[26-09-2024 12:23:18] INFO (** New Band **) DX: KB8OTK - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 3 dB 1058 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:18] INFO Spot: DX: JA2GW - Spotter: JK1QLQ - Freq: 7008.5 - Band: 40M - FlexID: 6098 deleted from database +[26-09-2024 12:23:18] INFO (** New Band **) DX: 2E0EPB - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1690 Hz - Time: 0523Z - DXCC: 223 +[26-09-2024 12:23:19] INFO (** New Band **) DX: LX1TI - Spotter: 2E0INH - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: +10 dB 1147 Hz - Time: 0523Z - DXCC: 254 +[26-09-2024 12:23:19] INFO DX: S570CST - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -16 dB 1626 Hz - Time: 0523Z - DXCC: 499 +[26-09-2024 12:23:19] INFO Spot: DX: ZR1ADI - Spotter: K9LC - Freq: 10136.0 - Band: 30M - FlexID: 6099 deleted from database +[26-09-2024 12:23:19] INFO Spot: DX: K1LEC - Spotter: K9LC - Freq: 3573.0 - Band: 80M - FlexID: 6100 deleted from database +[26-09-2024 12:23:19] INFO Spot: DX: WS1N - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6101 deleted from database +[26-09-2024 12:23:19] INFO DX: SP7PMO - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 1503 Hz - Time: 0523Z - DXCC: 269 +[26-09-2024 12:23:20] INFO DX: W8AIT - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1153 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:20] INFO Spot: DX: VE7SZ - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6102 deleted from database +[26-09-2024 12:23:20] INFO Spot: DX: YO2MD - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6103 deleted from database +[26-09-2024 12:23:20] INFO Spot: DX: S55G - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - FlexID: 6104 deleted from database +[26-09-2024 12:23:21] INFO DX: N7NHS - Spotter: K9IMM - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -17 dB 1206 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:21] INFO DX: UA0QQV - Spotter: JJ2VLY - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 28 dB 26 WPM CQ - Time: 0523Z - DXCC: 15 +[26-09-2024 12:23:21] INFO Spot: DX: IK4LZH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - FlexID: 6105 deleted from database +[26-09-2024 12:23:21] INFO Spot: DX: JH6CDI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - FlexID: 6106 deleted from database +[26-09-2024 12:23:21] INFO DX: VK4BX - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: - 6 dB 978 Hz - Time: 0523Z - DXCC: 150 +[26-09-2024 12:23:22] INFO DX: VK4HX - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -13 dB 1209 Hz - Time: 0523Z - DXCC: 150 +[26-09-2024 12:23:22] INFO Spot: DX: R6BY - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - FlexID: 6107 deleted from database +[26-09-2024 12:23:22] INFO Spot: DX: DL3RAJ - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - FlexID: 6108 deleted from database +[26-09-2024 12:23:22] INFO DX: YB7CV - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 1516 Hz - Time: 0523Z - DXCC: 327 +[26-09-2024 12:23:23] INFO (** Worked **) DX: RN3QR - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +15 dB 1268 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:23] INFO DX: RN3QR - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: +15 dB 1268 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:23] INFO (** Worked **) DX: A41ZZ - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 3 dB 866 Hz - Time: 0523Z - DXCC: 370 +[26-09-2024 12:23:23] INFO DX: A41ZZ - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 3 dB 866 Hz - Time: 0523Z - DXCC: 370 +[26-09-2024 12:23:23] INFO Spot: DX: DL5DQZ - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - FlexID: 6109 deleted from database +[26-09-2024 12:23:23] INFO Spot: DX: UA3SAQ - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - FlexID: 6110 deleted from database +[26-09-2024 12:23:23] INFO Spot: DX: S580ITFC - Spotter: MM3NDH - Freq: 7025.0 - Band: 40M - FlexID: 6111 deleted from database +[26-09-2024 12:23:23] INFO DX: DM6MA - Spotter: YO2MAX - Freq: 10138.0 - Band: 30M - Mode: FT8 - Comment: + 3 dB 544 Hz - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:24] INFO DX: KT4XF - Spotter: W3OA - Freq: 1812.0 - Band: 17M - Mode: CW - Comment: 17 dB 10 WPM CQ - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:24] INFO Spot: DX: BG7EJL - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 6112 deleted from database +[26-09-2024 12:23:24] INFO Spot: DX: WA7GIJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6113 deleted from database +[26-09-2024 12:23:24] INFO DX: RA6DT - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 6 dB 2353 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:25] INFO DX: OK1ZCF - Spotter: S50U - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 853 Hz - Time: 0523Z - DXCC: 503 +[26-09-2024 12:23:25] INFO (** New Band **) DX: IK1UGX - Spotter: HA6PX - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 18 dB 22 WPM CQ - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:25] INFO Spot: DX: DO1DAH - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6114 deleted from database +[26-09-2024 12:23:25] INFO Spot: DX: SP2BWI - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6115 deleted from database +[26-09-2024 12:23:25] INFO Spot: DX: SP6AXW - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6116 deleted from database +[26-09-2024 12:23:25] INFO (** New Band **) DX: IK1UGX - Spotter: HA8TKS - Freq: 7018.0 - Band: 40M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:26] INFO DX: SP6AXW - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 2234 Hz - Time: 0523Z - DXCC: 269 +[26-09-2024 12:23:26] INFO DX: 4X6TU - Spotter: LZ4AE - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 20 dB 22 WPM NCDXF BCN - Time: 0523Z - DXCC: 997 +[26-09-2024 12:23:26] INFO Spot: DX: PC6HELL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6117 deleted from database +[26-09-2024 12:23:26] INFO Spot: DX: M0JUE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6118 deleted from database +[26-09-2024 12:23:26] INFO Spot: DX: OH3DJP - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - FlexID: 6119 deleted from database +[26-09-2024 12:23:27] INFO DX: G0JNH - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 1807 Hz - Time: 0523Z - DXCC: 223 +[26-09-2024 12:23:27] INFO (** Worked **) DX: BD6RN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1942 Hz - Time: 0523Z - DXCC: 318 +[26-09-2024 12:23:27] INFO DX: BD6RN - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 6 dB 1942 Hz - Time: 0523Z - DXCC: 318 +[26-09-2024 12:23:27] INFO Spot: DX: RW3TY - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - FlexID: 6120 deleted from database +[26-09-2024 12:23:27] INFO Spot: DX: UT6QX - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - FlexID: 6121 deleted from database +[26-09-2024 12:23:27] INFO (** Worked **) DX: RU3FM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1452 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:27] INFO DX: RU3FM - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1452 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:28] INFO DX: WA3MH - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +12 dB 1354 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:28] INFO Spot: DX: TA2EE - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - FlexID: 6122 deleted from database +[26-09-2024 12:23:28] INFO Spot: DX: BI6NSL - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - FlexID: 6123 deleted from database +[26-09-2024 12:23:28] INFO (** New Band **) DX: UF2F - Spotter: F6KGL - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -18 dB 1135 Hz - Time: 0523Z - DXCC: 126 +[26-09-2024 12:23:29] INFO DX: R2BBX - Spotter: LZ4UX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -10 dB 804 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:29] INFO DX: RU0LL - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 2 dB 1342 Hz - Time: 0523Z - DXCC: 15 +[26-09-2024 12:23:29] INFO Spot: DX: N6RW - Spotter: VE7CC - Freq: 3573.0 - Band: 80M - FlexID: 6125 deleted from database +[26-09-2024 12:23:29] INFO Spot: DX: LU8EMI - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 6126 deleted from database +[26-09-2024 12:23:29] INFO (** New Band **) DX: MM0HVU - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -13 dB 1695 Hz - Time: 0523Z - DXCC: 279 +[26-09-2024 12:23:30] INFO DX: RN3GG - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 1845 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:30] INFO DX: PC6HELL - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1057 Hz - Time: 0523Z - DXCC: 263 +[26-09-2024 12:23:30] INFO Spot: DX: F5PIO - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - FlexID: 6127 deleted from database +[26-09-2024 12:23:30] INFO Spot: DX: TA4SSK - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - FlexID: 6128 deleted from database +[26-09-2024 12:23:31] INFO (** New Band **) DX: IK4LZH - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +14 dB 384 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:31] INFO DX: KE8MYQ - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 809 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:31] INFO Spot: DX: IU1PZC - Spotter: OH4KA - Freq: 10110.0 - Band: 30M - FlexID: 6129 deleted from database +[26-09-2024 12:23:31] INFO Spot: DX: KF6LYF - Spotter: NG7M - Freq: 3573.0 - Band: 80M - FlexID: 6130 deleted from database +[26-09-2024 12:23:31] INFO (** New Band **) DX: F5IYE - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 2880 Hz - Time: 0523Z - DXCC: 227 +[26-09-2024 12:23:32] INFO (** New Band **) DX: EA9ACF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -16 dB 2941 Hz - Time: 0523Z - DXCC: 32 +[26-09-2024 12:23:32] INFO DX: SP8LM - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 4 dB 1632 Hz - Time: 0523Z - DXCC: 269 +[26-09-2024 12:23:32] INFO Spot: DX: ZL4KYH - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 6131 deleted from database +[26-09-2024 12:23:32] INFO Spot: DX: AA9GE - Spotter: KM3T - Freq: 1840.0 - Band: 17M - FlexID: 6132 deleted from database +[26-09-2024 12:23:32] INFO Spot: DX: J88IH - Spotter: KM3T - Freq: 18100.0 - Band: 17M - FlexID: 6133 deleted from database +[26-09-2024 12:23:32] INFO DX: IU2SMA - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 2331 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:33] INFO DX: LZ6LZ - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 1 dB 2899 Hz - Time: 0523Z - DXCC: 212 +[26-09-2024 12:23:33] INFO Spot: DX: W8FSM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6134 deleted from database +[26-09-2024 12:23:33] INFO Spot: DX: 9A1AR - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6135 deleted from database +[26-09-2024 12:23:33] INFO DX: 9H5RA - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 501 Hz - Time: 0523Z - DXCC: 257 +[26-09-2024 12:23:34] INFO DX: YO7BPC - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 2 dB 685 Hz - Time: 0523Z - DXCC: 275 +[26-09-2024 12:23:34] INFO (** New DXCC **) DX: J88BTI - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 1248 Hz - Time: 0523Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:23:34] INFO Spot: DX: SP7XIF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6137 deleted from database +[26-09-2024 12:23:34] INFO Spot: DX: DJ7GS - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6138 deleted from database +[26-09-2024 12:23:34] INFO (** New Band **) DX: DJ7XY - Spotter: W1NT - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 5 dB 1403 Hz - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:35] INFO DX: CS3B - Spotter: W1NT - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 11 dB 21 WPM NCDXF BCN - Time: 0523Z - DXCC: 256 +[26-09-2024 12:23:35] INFO DX: LZ3SU - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 5 dB 1790 Hz - Time: 0523Z - DXCC: 212 +[26-09-2024 12:23:35] INFO Spot: DX: HB9BEM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6139 deleted from database +[26-09-2024 12:23:35] INFO Spot: DX: SV8JVM - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - FlexID: 6140 deleted from database +[26-09-2024 12:23:35] INFO Spot: DX: PA5KK - Spotter: S50U - Freq: 7074.0 - Band: 40M - FlexID: 6141 deleted from database +[26-09-2024 12:23:36] INFO DX: W8FSM - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 702 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:36] INFO DX: R1AV - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 912 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:36] INFO Spot: DX: 7R8RR - Spotter: S50U - Freq: 14074.0 - Band: 20M - FlexID: 6142 deleted from database +[26-09-2024 12:23:36] INFO (** New Band **) DX: IX1CVF - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +17 dB 2617 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:37] INFO (** Worked **) DX: UW5ZM - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 111 Hz - Time: 0523Z - DXCC: 288 +[26-09-2024 12:23:37] INFO DX: UW5ZM - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -14 dB 111 Hz - Time: 0523Z - DXCC: 288 +[26-09-2024 12:23:37] INFO (** New Band **) DX: DM2DZM - Spotter: EA5RQ - Freq: 7037.0 - Band: 40M - Mode: CW - Comment: 24 dB 38 WPM CQ - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:37] INFO Spot: DX: HB9HSJ - Spotter: G4IRN - Freq: 7074.0 - Band: 40M - FlexID: 6143 deleted from database +[26-09-2024 12:23:37] INFO Spot: DX: SV3EAO - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 6144 deleted from database +[26-09-2024 12:23:37] INFO (** New Band **) DX: OH6FSO - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2612 Hz - Time: 0523Z - DXCC: 224 +[26-09-2024 12:23:38] INFO (** New Band **) DX: IU8NKW - Spotter: IQ8DO - Freq: 7074.0 - Band: 40M - Mode: CW - Comment: 05:23 19th Palazzo Reale Ca - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:38] INFO Spot: DX: R6JAG - Spotter: SQ5OUO - Freq: 21074.0 - Band: 15M - FlexID: 6145 deleted from database +[26-09-2024 12:23:38] INFO Spot: DX: KE9BGK - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - FlexID: 6146 deleted from database +[26-09-2024 12:23:38] INFO Spot: DX: KB6JFL - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - FlexID: 6147 deleted from database +[26-09-2024 12:23:38] INFO (** Worked **) DX: BH4GBC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -21 dB 2910 Hz - Time: 0523Z - DXCC: 318 +[26-09-2024 12:23:38] INFO DX: BH4GBC - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -21 dB 2910 Hz - Time: 0523Z - DXCC: 318 +[26-09-2024 12:23:39] INFO DX: K4ZH - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -18 dB 1521 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:39] INFO (** Worked **) DX: IK4LZH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 286 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:39] INFO DX: IK4LZH - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 286 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:39] INFO Spot: DX: W3UNO - Spotter: VE3EID - Freq: 14074.0 - Band: 20M - FlexID: 6148 deleted from database +[26-09-2024 12:23:39] INFO Spot: DX: YO8DHA - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6149 deleted from database +[26-09-2024 12:23:39] INFO (** New Band **) DX: EC3A - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 2 dB 1268 Hz - Time: 0523Z - DXCC: 281 +[26-09-2024 12:23:40] INFO (** New Band **) DX: CT2HEX - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 7 dB 800 Hz - Time: 0523Z - DXCC: 272 +[26-09-2024 12:23:40] INFO DX: PD3MC - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1500 Hz - Time: 0523Z - DXCC: 263 +[26-09-2024 12:23:40] INFO Spot: DX: SV9CAF - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - FlexID: 6150 deleted from database +[26-09-2024 12:23:40] INFO Spot: DX: IT9IVU - Spotter: EA5RQ - Freq: 7029.0 - Band: 40M - FlexID: 6151 deleted from database +[26-09-2024 12:23:40] INFO Spot: DX: IK7XGH - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6152 deleted from database +[26-09-2024 12:23:41] INFO (** Worked **) DX: F5PIO - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1798 Hz - Time: 0523Z - DXCC: 227 +[26-09-2024 12:23:41] INFO DX: F5PIO - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 5 dB 1798 Hz - Time: 0523Z - DXCC: 227 +[26-09-2024 12:23:41] INFO DX: CT1JSP - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -19 dB 1818 Hz - Time: 0523Z - DXCC: 272 +[26-09-2024 12:23:41] INFO Spot: DX: IK0AGU - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6153 deleted from database +[26-09-2024 12:23:41] INFO Spot: DX: RU0LL - Spotter: LZ4UX - Freq: 24915.0 - Band: 12M - FlexID: 6154 deleted from database +[26-09-2024 12:23:41] INFO (** New Band **) DX: DJ1AA - Spotter: DK8NE - Freq: 50313.0 - Band: N/A - Mode: FT8 - Comment: - 2 dB 2006 Hz - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:42] INFO DX: DL3RAJ - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 8 dB 2037 Hz - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:42] INFO (** New Band **) DX: S55G - Spotter: W1NT - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 8 dB 384 Hz - Time: 0523Z - DXCC: 499 +[26-09-2024 12:23:42] INFO Spot: DX: JA7GVE - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - FlexID: 6155 deleted from database +[26-09-2024 12:23:42] INFO Spot: DX: RA6MQ - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - FlexID: 6156 deleted from database +[26-09-2024 12:23:42] INFO Spot: DX: EA4EQ - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6157 deleted from database +[26-09-2024 12:23:43] INFO (** New Band **) DX: KX8X - Spotter: VE3EID - Freq: 3563.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1620 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:43] INFO Spot: DX: DL7TCW - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - FlexID: 6158 deleted from database +[26-09-2024 12:23:43] INFO Spot: DX: JA6CPQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 6159 deleted from database +[26-09-2024 12:23:43] INFO DX: IK7XJA - Spotter: S50U - Freq: 10105.0 - Band: 30M - Mode: CW - Comment: 7 dB 28 WPM CQ - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:44] INFO DX: E74K - Spotter: S50U - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 2110 Hz - Time: 0523Z - DXCC: 501 +[26-09-2024 12:23:44] INFO Spot: DX: VE7SZ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6160 deleted from database +[26-09-2024 12:23:44] INFO Spot: DX: DL6WO - Spotter: W1NT - Freq: 7074.0 - Band: 40M - FlexID: 6161 deleted from database +[26-09-2024 12:23:44] INFO Spot: DX: SV2BWY - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6162 deleted from database +[26-09-2024 12:23:45] INFO Spot: DX: HC1HC - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6163 deleted from database +[26-09-2024 12:23:45] INFO Spot: DX: KB8SRX - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6164 deleted from database +[26-09-2024 12:23:45] INFO Spot: DX: G8KHF - Spotter: SQ5OUO - Freq: 7074.0 - Band: 40M - FlexID: 6165 deleted from database +[26-09-2024 12:23:46] INFO Spot: DX: SV9ANK - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6166 deleted from database +[26-09-2024 12:23:46] INFO Spot: DX: ZL2BX - Spotter: K9LC - Freq: 10136.0 - Band: 30M - FlexID: 6167 deleted from database +[26-09-2024 12:23:47] INFO Spot: DX: W4IHQ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - FlexID: 6168 deleted from database +[26-09-2024 12:23:47] INFO Spot: DX: F6FHZ - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - FlexID: 6169 deleted from database +[26-09-2024 12:23:47] INFO Spot: DX: IU0RBF - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - FlexID: 6170 deleted from database +[26-09-2024 12:23:48] INFO Spot: DX: NE1V - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - FlexID: 6171 deleted from database +[26-09-2024 12:23:48] INFO Spot: DX: EW8OM - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6172 deleted from database +[26-09-2024 12:23:49] INFO DX: LZ3QE - Spotter: G4ZFE - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 4 dB 23 WPM CQ - Time: 0523Z - DXCC: 212 +[26-09-2024 12:23:49] INFO (** New Band **) DX: YO7CKQ - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -11 dB 603 Hz - Time: 0523Z - DXCC: 275 +[26-09-2024 12:23:49] INFO Spot: DX: YU3TA - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6173 deleted from database +[26-09-2024 12:23:49] INFO Spot: DX: RO6G - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6174 deleted from database +[26-09-2024 12:23:49] INFO Spot: DX: RA3MU - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6175 deleted from database +[26-09-2024 12:23:50] INFO Spot: DX: KA4JRY - Spotter: K9IMM - Freq: 1840.0 - Band: 17M - FlexID: 6176 deleted from database +[26-09-2024 12:23:50] INFO Spot: DX: RR9O - Spotter: DL8LAS - Freq: 18110.0 - Band: 17M - FlexID: 6177 deleted from database +[26-09-2024 12:23:50] INFO (** New Band **) DX: CT3MD - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 640 Hz - Time: 0523Z - DXCC: 256 +[26-09-2024 12:23:51] INFO DX: N3UL - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1105 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:51] INFO (** New Band **) DX: DH1AA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 654 Hz - Time: 0523Z - DXCC: 230 +[26-09-2024 12:23:51] INFO Spot: DX: RW6HP - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - FlexID: 6178 deleted from database +[26-09-2024 12:23:51] INFO Spot: DX: 9A4ZM - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6179 deleted from database +[26-09-2024 12:23:51] INFO Spot: DX: YV4MJP - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - FlexID: 6180 deleted from database +[26-09-2024 12:23:52] INFO Spot: DX: F6FDY - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - FlexID: 6181 deleted from database +[26-09-2024 12:23:52] INFO Spot: DX: IZ0MIT - Spotter: W3OA - Freq: 10136.0 - Band: 30M - FlexID: 6182 deleted from database +[26-09-2024 12:23:53] INFO Spot: DX: YO6LM - Spotter: W3OA - Freq: 7074.0 - Band: 40M - FlexID: 6183 deleted from database +[26-09-2024 12:23:53] INFO Spot: DX: EA5JFO - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6184 deleted from database +[26-09-2024 12:23:53] INFO Spot: DX: EA8SG - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - FlexID: 6185 deleted from database +[26-09-2024 12:23:53] INFO DX: UA0SU - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 799 Hz - Time: 0523Z - DXCC: 15 +[26-09-2024 12:23:54] INFO (** New Band **) DX: LY3PW - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 2 dB 1324 Hz - Time: 0523Z - DXCC: 146 +[26-09-2024 12:23:54] INFO (** New Band **) DX: YO8DHA - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 3 dB 1491 Hz - Time: 0523Z - DXCC: 275 +[26-09-2024 12:23:54] INFO Spot: DX: YO5COG - Spotter: 2E0INH - Freq: 10136.0 - Band: 30M - FlexID: 6186 deleted from database +[26-09-2024 12:23:54] INFO Spot: DX: RK2M - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - FlexID: 6187 deleted from database +[26-09-2024 12:23:55] INFO DX: IZ7WKI - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 2356 Hz - Time: 0523Z - DXCC: 248 +[26-09-2024 12:23:55] INFO DX: PE0V - Spotter: S50U - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1846 Hz - Time: 0523Z - DXCC: 263 +[26-09-2024 12:23:55] INFO Spot: DX: SP5AA - Spotter: VU2CPL - Freq: 24915.0 - Band: 12M - FlexID: 6188 deleted from database +[26-09-2024 12:23:55] INFO Spot: DX: R8KAN - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - FlexID: 6189 deleted from database +[26-09-2024 12:23:55] INFO Spot: DX: YB1BB - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - FlexID: 6190 deleted from database +[26-09-2024 12:23:55] INFO DX: N7YU - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 1925 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:56] INFO DX: VA3BOO - Spotter: W3OA - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 1467 Hz - Time: 0523Z - DXCC: 1 +[26-09-2024 12:23:56] INFO DX: SQ4CTS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1323 Hz - Time: 0523Z - DXCC: 269 +[26-09-2024 12:23:56] INFO Spot: DX: JH2KUF - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 6191 deleted from database +[26-09-2024 12:23:56] INFO Spot: DX: F8AEJ - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6192 deleted from database +[26-09-2024 12:23:57] INFO (** New Band **) DX: F5MXH - Spotter: WA7LNW - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -15 dB 1252 Hz - Time: 0523Z - DXCC: 227 +[26-09-2024 12:23:57] INFO (** Worked **) DX: JA7GVE - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1865 Hz - Time: 0523Z - DXCC: 339 +[26-09-2024 12:23:57] INFO DX: JA7GVE - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -18 dB 1865 Hz - Time: 0523Z - DXCC: 339 +[26-09-2024 12:23:57] INFO Spot: DX: DL9SFE - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6193 deleted from database +[26-09-2024 12:23:57] INFO Spot: DX: IW2DNI - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6194 deleted from database +[26-09-2024 12:23:57] INFO Spot: DX: LZ3FX - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 6195 deleted from database +[26-09-2024 12:23:57] INFO DX: G0JHC - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1619 Hz - Time: 0523Z - DXCC: 223 +[26-09-2024 12:23:58] INFO DX: UA6HGM - Spotter: F6KGL - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 9 dB 1559 Hz - Time: 0523Z - DXCC: 54 +[26-09-2024 12:23:58] INFO Spot: DX: MM7DAH - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6196 deleted from database +[26-09-2024 12:23:58] INFO Spot: DX: YB9GAN - Spotter: HA8TKS - Freq: 28074.0 - Band: 10M - FlexID: 6197 deleted from database +[26-09-2024 12:23:59] INFO DX: NE1V - Spotter: NG7M - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -19 dB 1259 Hz - Time: 0523Z - DXCC: 291 +[26-09-2024 12:23:59] INFO Spot: DX: WA2HIP - Spotter: HA8TKS - Freq: 7074.0 - Band: 40M - FlexID: 6198 deleted from database +[26-09-2024 12:23:59] INFO Spot: DX: F4IIX - Spotter: LZ4UX - Freq: 7074.0 - Band: 40M - FlexID: 6199 deleted from database +[26-09-2024 12:23:59] INFO Spot: DX: DL4JG - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6200 deleted from database +[26-09-2024 12:24:00] INFO (** New Band **) DX: ZL2BX - Spotter: K9LC - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -14 dB 795 Hz - Time: 0524Z - DXCC: 170 +[26-09-2024 12:24:00] INFO DX: RK7N - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1452 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:00] INFO Spot: DX: EC7R - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6201 deleted from database +[26-09-2024 12:24:00] INFO Spot: DX: K7CAR - Spotter: K7CO - Freq: 10136.0 - Band: 30M - FlexID: 6202 deleted from database +[26-09-2024 12:24:00] INFO Spot: DX: KJ5DYS - Spotter: K7CO - Freq: 7074.0 - Band: 40M - FlexID: 6203 deleted from database +[26-09-2024 12:24:01] INFO (** New Band **) DX: OA4B - Spotter: KM3T - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 3 dB 23 WPM NCDXF BCN - Time: 0524Z - DXCC: 136 +[26-09-2024 12:24:01] INFO Spot: DX: WV1T - Spotter: K7CO - Freq: 14074.0 - Band: 20M - FlexID: 6204 deleted from database +[26-09-2024 12:24:01] INFO Spot: DX: KK7CAI - Spotter: K7CO - Freq: 14074.0 - Band: 20M - FlexID: 6205 deleted from database +[26-09-2024 12:24:02] INFO Spot: DX: JN1XVA - Spotter: VU2PTT - Freq: 24915.0 - Band: 12M - FlexID: 6207 deleted from database +[26-09-2024 12:24:03] INFO Spot: DX: EV1R - Spotter: VU2PTT - Freq: 21074.0 - Band: 15M - FlexID: 6208 deleted from database +[26-09-2024 12:24:03] INFO Spot: DX: NA6JD - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6209 deleted from database +[26-09-2024 12:24:03] INFO Spot: DX: F4FSY - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6210 deleted from database +[26-09-2024 12:24:04] INFO (** Worked **) DX: D2UY - Spotter: HA8TKS - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 249 Hz - Time: 0524Z - DXCC: 401 +[26-09-2024 12:24:04] INFO DX: D2UY - Spotter: HA8TKS - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -17 dB 249 Hz - Time: 0524Z - DXCC: 401 +[26-09-2024 12:24:04] INFO Spot: DX: N4NJJ - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6211 deleted from database +[26-09-2024 12:24:04] INFO Spot: DX: 5P1KZX - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6212 deleted from database +[26-09-2024 12:24:04] INFO Spot: DX: F4JIH - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6213 deleted from database +[26-09-2024 12:24:04] INFO (** New Band **) DX: DK1AQ - Spotter: W3OA - Freq: 3573.5 - Band: 80M - Mode: FT8 - Comment: -17 dB 876 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:05] INFO DX: VE7SZ - Spotter: W3OA - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2075 Hz - Time: 0524Z - DXCC: 1 +[26-09-2024 12:24:05] INFO (** Worked **) DX: YB1JCD - Spotter: JN1ILK - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 13 dB 29 WPM CQ - Time: 0524Z - DXCC: 327 +[26-09-2024 12:24:05] INFO DX: YB1JCD - Spotter: JN1ILK - Freq: 21036.0 - Band: 15M - Mode: CW - Comment: 13 dB 29 WPM CQ - Time: 0524Z - DXCC: 327 +[26-09-2024 12:24:05] INFO Spot: DX: KG9Z - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6214 deleted from database +[26-09-2024 12:24:05] INFO Spot: DX: N9WLF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6215 deleted from database +[26-09-2024 12:24:06] INFO (** Worked **) DX: JA6CPQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 637 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:06] INFO DX: JA6CPQ - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -13 dB 637 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:06] INFO Spot: DX: F5NNN - Spotter: W1NT - Freq: 3573.0 - Band: 80M - FlexID: 6216 deleted from database +[26-09-2024 12:24:06] INFO Spot: DX: IU8LLQ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6217 deleted from database +[26-09-2024 12:24:06] INFO Spot: DX: OK2UQE - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - FlexID: 6218 deleted from database +[26-09-2024 12:24:07] INFO (** Worked **) DX: BG5GLV - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -18 dB 1293 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:07] INFO DX: BG5GLV - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -18 dB 1293 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:07] INFO DX: BG7EJL - Spotter: VU2PTT - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -22 dB 947 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:07] INFO DX: IW3BYL - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -18 dB 1983 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:07] INFO Spot: DX: SP3MS - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 6219 deleted from database +[26-09-2024 12:24:07] INFO Spot: DX: KM0PAR - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - FlexID: 6220 deleted from database +[26-09-2024 12:24:08] INFO DX: JH1WFS - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 2571 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:08] INFO Spot: DX: LB6FG - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6221 deleted from database +[26-09-2024 12:24:08] INFO Spot: DX: EA1AA - Spotter: SM7IUN - Freq: 10136.0 - Band: 30M - FlexID: 6222 deleted from database +[26-09-2024 12:24:08] INFO Spot: DX: VK8VF - Spotter: VK2GEL - Freq: 28268.0 - Band: 10M - FlexID: 6223 deleted from database +[26-09-2024 12:24:09] INFO Spot: DX: EB3CJR - Spotter: KD2YQS - Freq: 7075.4 - Band: 40M - FlexID: 6136 deleted from database +[26-09-2024 12:24:09] INFO Spot: DX: OM0ACE - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - FlexID: 6224 deleted from database +[26-09-2024 12:24:10] INFO (** New Band **) DX: EA3CU - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 9 dB 1264 Hz - Time: 0524Z - DXCC: 281 +[26-09-2024 12:24:10] INFO (** New Band **) DX: DL5DQZ - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 2096 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:10] INFO DX: W4IHQ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1191 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:10] INFO Spot: DX: W7PHG - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 6225 deleted from database +[26-09-2024 12:24:10] INFO Spot: DX: FG4NO - Spotter: KM3T - Freq: 1840.0 - Band: 17M - FlexID: 6226 deleted from database +[26-09-2024 12:24:10] INFO Spot: DX: ZR1ADI - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6227 deleted from database +[26-09-2024 12:24:11] INFO DX: BD7OH - Spotter: VU2CPL - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -10 dB 1035 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:11] INFO DX: KF0IPD - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 4 dB 987 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:11] INFO Spot: DX: F4LOU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6228 deleted from database +[26-09-2024 12:24:11] INFO Spot: DX: DL1KEA - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6229 deleted from database +[26-09-2024 12:24:12] INFO (** New Band **) DX: CD6SNT - Spotter: N6TV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 1153 Hz - Time: 0524Z - DXCC: 112 +[26-09-2024 12:24:12] INFO DX: KO6PB - Spotter: N6TV - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1255 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:12] INFO Spot: DX: SM5DGE - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6230 deleted from database +[26-09-2024 12:24:12] INFO Spot: DX: 4Z5IW - Spotter: YO2MAX - Freq: 24915.0 - Band: 12M - FlexID: 6231 deleted from database +[26-09-2024 12:24:12] INFO Spot: DX: N7PWZ - Spotter: K9LC - Freq: 7074.0 - Band: 40M - FlexID: 6232 deleted from database +[26-09-2024 12:24:13] INFO Spot: DX: Z32LM - Spotter: ZL4YL - Freq: 7011.3 - Band: 40M - FlexID: 6233 deleted from database +[26-09-2024 12:24:13] INFO Spot: DX: RM8W - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6234 deleted from database +[26-09-2024 12:24:14] INFO DX: TA2EE - Spotter: YO2MAX - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 7 dB 1474 Hz - Time: 0524Z - DXCC: 390 +[26-09-2024 12:24:14] INFO DX: YB9GAN - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1800 Hz - Time: 0524Z - DXCC: 327 +[26-09-2024 12:24:15] INFO Spot: DX: S50UA - Spotter: LZ4UX - Freq: 10136.0 - Band: 30M - FlexID: 6235 deleted from database +[26-09-2024 12:24:15] INFO Spot: DX: 4X6TU - Spotter: LZ4AE - Freq: 14100.0 - Band: 20M - FlexID: 6236 deleted from database +[26-09-2024 12:24:15] INFO Spot: DX: IW8CGX - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6237 deleted from database +[26-09-2024 12:24:15] INFO (** New Band **) DX: DK5CM - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -17 dB 600 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:16] INFO Spot: DX: IK2SYK - Spotter: SM7IUN - Freq: 3573.0 - Band: 80M - FlexID: 6238 deleted from database +[26-09-2024 12:24:16] INFO Spot: DX: KP2B - Spotter: W3OA - Freq: 14074.0 - Band: 20M - FlexID: 6239 deleted from database +[26-09-2024 12:24:16] INFO DX: KB6JFL - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 2530 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:17] INFO Spot: DX: AK7VV - Spotter: W3OA - Freq: 7074.0 - Band: 40M - FlexID: 6240 deleted from database +[26-09-2024 12:24:17] INFO Spot: DX: DG3BZ - Spotter: W3OA - Freq: 7074.0 - Band: 40M - FlexID: 6241 deleted from database +[26-09-2024 12:24:17] INFO Spot: DX: VK2KJJ - Spotter: VK6ANC - Freq: 14011.0 - Band: 20M - FlexID: 6242 deleted from database +[26-09-2024 12:24:17] INFO DX: W4MJH - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 2 dB 2818 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:18] INFO Spot: DX: YD8CXQ - Spotter: VU2CPL - Freq: 21074.0 - Band: 15M - FlexID: 6243 deleted from database +[26-09-2024 12:24:18] INFO Spot: DX: N0IDX - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 6244 deleted from database +[26-09-2024 12:24:19] INFO Spot: DX: ON4BN - Spotter: W1NT - Freq: 7074.0 - Band: 40M - FlexID: 6245 deleted from database +[26-09-2024 12:24:19] INFO Spot: DX: S57EA - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6246 deleted from database +[26-09-2024 12:24:19] INFO Spot: DX: UX3HX - Spotter: HA8TKS - Freq: 18100.0 - Band: 17M - FlexID: 6247 deleted from database +[26-09-2024 12:24:19] INFO (** New Band **) DX: DL4SZB - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: - 4 dB 1579 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:20] INFO Spot: DX: NU6V - Spotter: K9LC - Freq: 7036.0 - Band: 40M - FlexID: 5861 deleted from database +[26-09-2024 12:24:20] INFO Spot: DX: JH1WFS - Spotter: HA8TKS - Freq: 21074.0 - Band: 15M - FlexID: 6248 deleted from database +[26-09-2024 12:24:20] INFO Spot: DX: K6KWV - Spotter: VE7CC - Freq: 7074.0 - Band: 40M - FlexID: 6249 deleted from database +[26-09-2024 12:24:20] INFO (** New Band **) DX: HA9OA - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 267 Hz - Time: 0524Z - DXCC: 239 +[26-09-2024 12:24:20] INFO (** New Band **) DX: ON3SLK - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -20 dB 2007 Hz - Time: 0524Z - DXCC: 209 +[26-09-2024 12:24:21] INFO Spot: DX: VK3LGQ - Spotter: VE7CC - Freq: 14074.0 - Band: 20M - FlexID: 6250 deleted from database +[26-09-2024 12:24:21] INFO Spot: DX: PA5KS - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - FlexID: 6251 deleted from database +[26-09-2024 12:24:21] INFO (** New Band **) DX: SM5DGE - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 6 dB 1633 Hz - Time: 0524Z - DXCC: 284 +[26-09-2024 12:24:21] INFO DX: KG9Z - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1725 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:21] INFO (** New Band **) DX: DJ7GS - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 4 dB 2058 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:22] INFO Spot: DX: 4X6TU - Spotter: DM5GG - Freq: 18110.0 - Band: 17M - FlexID: 6252 deleted from database +[26-09-2024 12:24:22] INFO Spot: DX: KA1MXL - Spotter: K7CO - Freq: 10136.0 - Band: 30M - FlexID: 6253 deleted from database +[26-09-2024 12:24:22] INFO (** New Band **) DX: DL4JG - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 6 dB 1510 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:22] INFO (** New Band **) DX: OK4FX - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 2197 Hz - Time: 0524Z - DXCC: 503 +[26-09-2024 12:24:22] INFO DX: KS1A - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 597 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:23] INFO Spot: DX: IK2CIK - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6254 deleted from database +[26-09-2024 12:24:23] INFO Spot: DX: F4HAB - Spotter: KM3T - Freq: 3573.0 - Band: 80M - FlexID: 6255 deleted from database +[26-09-2024 12:24:23] INFO Spot: DX: LZ2XF - Spotter: KM3T - Freq: 14074.0 - Band: 20M - FlexID: 6256 deleted from database +[26-09-2024 12:24:23] INFO DX: RV3ID - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 8 dB 2140 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:23] INFO (** New Band **) DX: HC1HC - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 5 dB 2330 Hz - Time: 0524Z - DXCC: 120 +[26-09-2024 12:24:24] INFO Spot: DX: WO0DED - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6257 deleted from database +[26-09-2024 12:24:24] INFO Spot: DX: WB7DRU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6258 deleted from database +[26-09-2024 12:24:24] INFO Spot: DX: ON3DVT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6259 deleted from database +[26-09-2024 12:24:24] INFO DX: UA3GDJ - Spotter: 2E0INH - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 1713 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:24] INFO (** New Band **) DX: EA4EQ - Spotter: 2E0INH - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 1 dB 1128 Hz - Time: 0524Z - DXCC: 281 +[26-09-2024 12:24:24] INFO DX: 9A2AJ - Spotter: KM3T - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 9 dB 478 Hz - Time: 0524Z - DXCC: 497 +[26-09-2024 12:24:25] INFO Spot: DX: K5HDU - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6260 deleted from database +[26-09-2024 12:24:25] INFO Spot: DX: DL3ADI - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 6261 deleted from database +[26-09-2024 12:24:25] INFO (** New DXCC **) DX: J88IH - Spotter: KM3T - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 948 Hz - Time: 0524Z - Command: 0, FlexSpot: 0 +[26-09-2024 12:24:25] INFO DX: VK4GP - Spotter: JI1HFJ - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -12 dB 674 Hz - Time: 0524Z - DXCC: 150 +[26-09-2024 12:24:26] INFO Spot: DX: M6YIK - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - FlexID: 6262 deleted from database +[26-09-2024 12:24:26] INFO Spot: DX: DK1VD - Spotter: RK3TD - Freq: 14036.3 - Band: 20M - FlexID: 6263 deleted from database +[26-09-2024 12:24:26] INFO Spot: DX: KF0LHO - Spotter: ZF1A - Freq: 3573.0 - Band: 80M - FlexID: 6264 deleted from database +[26-09-2024 12:24:26] INFO DX: BD4VPZ - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 0 dB 977 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:26] INFO DX: JH6CDI - Spotter: JI1HFJ - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +22 dB 1322 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:27] INFO (** Worked **) DX: JA8RHU - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -13 dB 1782 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:27] INFO DX: JA8RHU - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -13 dB 1782 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:27] INFO Spot: DX: TA1CM - Spotter: ZF1A - Freq: 18100.0 - Band: 17M - FlexID: 6265 deleted from database +[26-09-2024 12:24:27] INFO Spot: DX: IT9JYF - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6266 deleted from database +[26-09-2024 12:24:27] INFO DX: UR5EEW - Spotter: JI1HFJ - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: -12 dB 2141 Hz - Time: 0524Z - DXCC: 288 +[26-09-2024 12:24:27] INFO DX: SV1QT - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -12 dB 750 Hz - Time: 0524Z - DXCC: 236 +[26-09-2024 12:24:28] INFO Spot: DX: W5JWM - Spotter: ZF1A - Freq: 7074.0 - Band: 40M - FlexID: 6267 deleted from database +[26-09-2024 12:24:28] INFO Spot: DX: SP5LST - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6268 deleted from database +[26-09-2024 12:24:28] INFO Spot: DX: KQ4OTE - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6269 deleted from database +[26-09-2024 12:24:28] INFO (** Worked **) DX: JA1OZZ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1218 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:28] INFO DX: JA1OZZ - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 1218 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:28] INFO DX: RA4HG - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: + 0 dB 1361 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:29] INFO DX: BD8GK - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1889 Hz - Time: 0524Z - DXCC: 318 +[26-09-2024 12:24:29] INFO Spot: DX: IK5PWQ - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6270 deleted from database +[26-09-2024 12:24:29] INFO Spot: DX: I2XCH - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - FlexID: 6271 deleted from database +[26-09-2024 12:24:29] INFO DX: IZ8EGE - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -14 dB 572 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:29] INFO DX: JK1GZF - Spotter: JI1HFJ - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: - 7 dB 1768 Hz - Time: 0524Z - DXCC: 339 +[26-09-2024 12:24:30] INFO Spot: DX: K7CTV - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - FlexID: 6272 deleted from database +[26-09-2024 12:24:30] INFO Spot: DX: HA7LJ - Spotter: YO2MAX - Freq: 3573.0 - Band: 80M - FlexID: 6273 deleted from database +[26-09-2024 12:24:30] INFO Spot: DX: 9A2GA - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - FlexID: 6274 deleted from database +[26-09-2024 12:24:30] INFO DX: US2YW - Spotter: YO2MAX - Freq: 24915.0 - Band: 12M - Mode: FT8 - Comment: - 6 dB 2082 Hz - Time: 0524Z - DXCC: 288 +[26-09-2024 12:24:30] INFO DX: N1NRL - Spotter: YO2MAX - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -10 dB 1410 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:31] INFO DX: EV1R - Spotter: YO2MAX - Freq: 28074.0 - Band: 10M - Mode: FT8 - Comment: -16 dB 2437 Hz - Time: 0524Z - DXCC: 27 +[26-09-2024 12:24:31] INFO Spot: DX: YR1400VT - Spotter: HA8TKS - Freq: 3573.0 - Band: 80M - FlexID: 6275 deleted from database +[26-09-2024 12:24:31] INFO Spot: DX: YO6OGW - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - FlexID: 6276 deleted from database +[26-09-2024 12:24:31] INFO DX: RD3M - Spotter: OE9GHV - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 3 dB 1455 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:31] INFO (** New Band **) DX: YL3BF - Spotter: DC8YZ - Freq: 7031.0 - Band: 40M - Mode: CW - Comment: 30 dB 22 WPM CQ - Time: 0524Z - DXCC: 145 +[26-09-2024 12:24:32] INFO Spot: DX: LZ1KGR - Spotter: HA8TKS - Freq: 14074.0 - Band: 20M - FlexID: 6277 deleted from database +[26-09-2024 12:24:32] INFO Spot: DX: YO4NT - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6278 deleted from database +[26-09-2024 12:24:32] INFO Spot: DX: UT3UZ - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6279 deleted from database +[26-09-2024 12:24:32] INFO DX: IN3ZWF - Spotter: G4IRN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -21 dB 1231 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:32] INFO (** New Band **) DX: OM0ACE - Spotter: SM7IUN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 0 dB 523 Hz - Time: 0524Z - DXCC: 504 +[26-09-2024 12:24:32] INFO DX: M0MZD - Spotter: HG0Y - Freq: 14062.6 - Band: 20M - Mode: CW - Comment: 6 dB 28 WPM CQ - Time: 0524Z - DXCC: 223 +[26-09-2024 12:24:33] INFO Spot: DX: DK7ZT - Spotter: DL8LAS - Freq: 3573.0 - Band: 80M - FlexID: 6280 deleted from database +[26-09-2024 12:24:33] INFO Spot: DX: RX3VF - Spotter: DL8LAS - Freq: 10136.0 - Band: 30M - FlexID: 6281 deleted from database +[26-09-2024 12:24:33] INFO DX: SP7TF - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: + 9 dB 953 Hz - Time: 0524Z - DXCC: 269 +[26-09-2024 12:24:33] INFO DX: KC5N - Spotter: ZF1A - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: - 4 dB 2785 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:34] INFO Spot: DX: SV1FJP - Spotter: OE9GHV - Freq: 10136.0 - Band: 30M - FlexID: 6283 deleted from database +[26-09-2024 12:24:34] INFO Spot: DX: DK8IT - Spotter: LZ3CB - Freq: 7021.0 - Band: 40M - FlexID: 6284 deleted from database +[26-09-2024 12:24:34] INFO DX: 4Z1TL - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -11 dB 1160 Hz - Time: 0524Z - DXCC: 336 +[26-09-2024 12:24:34] INFO DX: VE3CGD - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: + 2 dB 188 Hz - Time: 0524Z - DXCC: 1 +[26-09-2024 12:24:35] INFO DX: EA7DHT - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 610 Hz - Time: 0524Z - DXCC: 281 +[26-09-2024 12:24:35] INFO Spot: DX: BG8TFN - Spotter: LZ4UX - Freq: 28074.0 - Band: 10M - FlexID: 6285 deleted from database +[26-09-2024 12:24:35] INFO DX: YO2MD - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1313 Hz - Time: 0524Z - DXCC: 275 +[26-09-2024 12:24:35] INFO DX: YO8RGC - Spotter: ZF1A - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -13 dB 1676 Hz - Time: 0524Z - DXCC: 275 +[26-09-2024 12:24:36] INFO Spot: DX: IK5VLL - Spotter: RU9CZD - Freq: 14035.7 - Band: 20M - FlexID: 6282 deleted from database +[26-09-2024 12:24:36] INFO Spot: DX: EA5LD - Spotter: LZ4UX - Freq: 14074.0 - Band: 20M - FlexID: 6286 deleted from database +[26-09-2024 12:24:36] INFO Spot: DX: K4QAL - Spotter: N6TV - Freq: 14074.0 - Band: 20M - FlexID: 6287 deleted from database +[26-09-2024 12:24:36] INFO DX: WO0DED - Spotter: KM3T - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +11 dB 682 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:36] INFO (** New Band **) DX: VE6CV - Spotter: N6TV - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -19 dB 1557 Hz - Time: 0524Z - DXCC: 1 +[26-09-2024 12:24:36] INFO DX: DJ5YS - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -10 dB 1693 Hz - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:37] INFO Spot: DX: JI5UDJ - Spotter: JJ2VLY - Freq: 14068.1 - Band: 20M - FlexID: 6288 deleted from database +[26-09-2024 12:24:37] INFO Spot: DX: W5JWM - Spotter: KM3T - Freq: 10136.0 - Band: 30M - FlexID: 6289 deleted from database +[26-09-2024 12:24:37] INFO (** New Band **) DX: F4IIX - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: +10 dB 340 Hz - Time: 0524Z - DXCC: 227 +[26-09-2024 12:24:37] INFO DX: AA6AA - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: - 9 dB 1516 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:38] INFO (** New Band **) DX: HB9HSJ - Spotter: DL9GTB - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 1513 Hz - Time: 0524Z - DXCC: 287 +[26-09-2024 12:24:38] INFO Spot: DX: W5BIB - Spotter: KM3T - Freq: 10122.0 - Band: 30M - FlexID: 6290 deleted from database +[26-09-2024 12:24:38] INFO Spot: DX: F4BKT - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6291 deleted from database +[26-09-2024 12:24:38] INFO Spot: DX: DL6CHF - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6292 deleted from database +[26-09-2024 12:24:38] INFO DX: ES5NC - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 4 dB 763 Hz - Time: 0524Z - DXCC: 52 +[26-09-2024 12:24:38] INFO DX: OE9KFV - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: +11 dB 1669 Hz - Time: 0524Z - DXCC: 206 +[26-09-2024 12:24:39] INFO Spot: DX: HB40OK - Spotter: KM3T - Freq: 7074.0 - Band: 40M - FlexID: 6293 deleted from database +[26-09-2024 12:24:39] INFO (** New Band **) DX: IK4HPS - Spotter: DL8LAS - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 2 dB 827 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:39] INFO DX: UT6QX - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - Mode: FT8 - Comment: -16 dB 555 Hz - Time: 0524Z - DXCC: 288 +[26-09-2024 12:24:39] INFO (** New Band **) DX: MM7DAH - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 2045 Hz - Time: 0524Z - DXCC: 279 +[26-09-2024 12:24:40] INFO Spot: DX: SP5AA - Spotter: YO2MAX - Freq: 18100.0 - Band: 17M - FlexID: 6294 deleted from database +[26-09-2024 12:24:40] INFO Spot: DX: R3YAR - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6295 deleted from database +[26-09-2024 12:24:40] INFO DX: R7DX - Spotter: S50U - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 1 dB 2613 Hz - Time: 0524Z - DXCC: 54 +[26-09-2024 12:24:40] INFO (** New Band **) DX: IU8NKW - Spotter: S50U - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 0 dB 1013 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:41] INFO Spot: DX: 5P7F - Spotter: YO2MAX - Freq: 10136.0 - Band: 30M - FlexID: 6296 deleted from database +[26-09-2024 12:24:41] INFO Spot: DX: DL5JH - Spotter: DL9GTB - Freq: 3573.0 - Band: 80M - FlexID: 6297 deleted from database +[26-09-2024 12:24:41] INFO Spot: DX: LZ2VQ - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6298 deleted from database +[26-09-2024 12:24:41] INFO (** New Band **) DX: EA8SG - Spotter: G4IRN - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: + 4 dB 493 Hz - Time: 0524Z - DXCC: 29 +[26-09-2024 12:24:41] INFO DX: PD1AC - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -24 dB 1897 Hz - Time: 0524Z - DXCC: 263 +[26-09-2024 12:24:41] INFO DX: N7PWZ - Spotter: VE6AO - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -12 dB 729 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:42] INFO Spot: DX: UR4QWW - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6299 deleted from database +[26-09-2024 12:24:42] INFO Spot: DX: RN5M - Spotter: DL9GTB - Freq: 10136.0 - Band: 30M - FlexID: 6300 deleted from database +[26-09-2024 12:24:42] INFO DX: RM8W - Spotter: SM7IUN - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: - 3 dB 753 Hz - Time: 0524Z - DXCC: 15 +[26-09-2024 12:24:42] INFO DX: KE9BGK - Spotter: WE9V - Freq: 10136.0 - Band: 30M - Mode: FT8 - Comment: -13 dB 1633 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:43] INFO (** New Band **) DX: CX6TU - Spotter: LZ4UX - Freq: 21074.0 - Band: 15M - Mode: FT8 - Comment: -19 dB 2024 Hz - Time: 0524Z - DXCC: 144 +[26-09-2024 12:24:43] INFO Spot: DX: UT3UNE - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - FlexID: 6301 deleted from database +[26-09-2024 12:24:43] INFO Spot: DX: LZ2XF - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - FlexID: 6302 deleted from database +[26-09-2024 12:24:43] INFO Spot: DX: TA2EJ - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - FlexID: 6303 deleted from database +[26-09-2024 12:24:43] INFO (** New Band **) DX: F4HAB - Spotter: WA7LNW - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -18 dB 397 Hz - Time: 0524Z - DXCC: 227 +[26-09-2024 12:24:43] INFO DX: KE0E - Spotter: WA7LNW - Freq: 14074.0 - Band: 20M - Mode: FT8 - Comment: -12 dB 2251 Hz - Time: 0524Z - DXCC: 291 +[26-09-2024 12:24:44] INFO Spot: DX: EW4M - Spotter: DL9GTB - Freq: 18100.0 - Band: 17M - FlexID: 6304 deleted from database +[26-09-2024 12:24:44] INFO Spot: DX: R7WA - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6305 deleted from database +[26-09-2024 12:24:44] INFO (** New Band **) DX: IZ8GXE - Spotter: KM3T - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -16 dB 1189 Hz - Time: 0524Z - DXCC: 248 +[26-09-2024 12:24:44] INFO (** New Band **) DX: HA7LJ - Spotter: SQ5OUO - Freq: 3573.0 - Band: 80M - Mode: FT8 - Comment: -14 dB 980 Hz - Time: 0524Z - DXCC: 239 +[26-09-2024 12:24:45] INFO Spot: DX: UA9LP - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6306 deleted from database +[26-09-2024 12:24:45] INFO Spot: DX: SP3DSC - Spotter: DL9GTB - Freq: 14074.0 - Band: 20M - FlexID: 6307 deleted from database +[26-09-2024 12:24:45] INFO Spot: DX: A41DV - Spotter: DL9GTB - Freq: 28074.0 - Band: 10M - FlexID: 6308 deleted from database +[26-09-2024 12:24:45] INFO DX: DJ5IL - Spotter: DC8YZ - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 8 dB 26 WPM CQ - Time: 0524Z - DXCC: 230 +[26-09-2024 12:24:46] INFO Spot: DX: LU4AA - Spotter: VE6JY - Freq: 14100.1 - Band: 20M - FlexID: 5869 deleted from database +[26-09-2024 12:24:46] INFO Spot: DX: IZ0ONL - Spotter: EA5RQ - Freq: 7036.0 - Band: 40M - FlexID: 6309 deleted from database +[26-09-2024 12:24:47] INFO (** New Band **) DX: EC7R - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: + 1 dB 565 Hz - Time: 0524Z - DXCC: 281 +[26-09-2024 12:24:47] INFO Spot: DX: UC8U - Spotter: DL8LAS - Freq: 14014.4 - Band: 20M - FlexID: 6310 deleted from database +[26-09-2024 12:24:47] INFO Spot: DX: F6HUK - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - FlexID: 6311 deleted from database +[26-09-2024 12:24:47] INFO Spot: DX: UC6J - Spotter: DL8LAS - Freq: 14074.0 - Band: 20M - FlexID: 6312 deleted from database +[26-09-2024 12:24:47] INFO (** New Band **) DX: IU0RBF - Spotter: SV1CDN - Freq: 7074.0 - Band: 40M - Mode: FT8 - Comment: -11 dB 1668 Hz - Time: 0524Z - DXCC: 248 diff --git a/go.mod b/go.mod index 5560e6c..4db9703 100644 --- a/go.mod +++ b/go.mod @@ -9,6 +9,7 @@ require ( ) require ( + github.com/gorilla/mux v1.8.1 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.16 // indirect github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect diff --git a/go.sum b/go.sum index f9dfa1a..e1fcda4 100644 --- a/go.sum +++ b/go.sum @@ -1,6 +1,8 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= +github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= diff --git a/logger/log.go b/logger/log.go index 4ac851a..e370b44 100644 --- a/logger/log.go +++ b/logger/log.go @@ -15,6 +15,7 @@ func NewLog() *log.Logger { } w := io.MultiWriter(os.Stdout, f) + // w := io.Writer(os.Stdout) l := &log.Logger{ Out: w, diff --git a/main.go b/main.go index da22b9f..f22b639 100644 --- a/main.go +++ b/main.go @@ -3,6 +3,9 @@ package main import ( "flag" "log" + "os" + "os/signal" + "syscall" "git.rouggy.com/rouggy/FlexDXCluster/logger" ) @@ -48,16 +51,42 @@ func main() { DeleteDatabase("./flex.sqlite", log) - repo := NewFlexDXDatabase("flex.sqlite", log) + fRepo := NewFlexDXDatabase("flex.sqlite", log) + defer fRepo.db.Close() + + cRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath, log) + defer cRepo.db.Close() TCPServer := NewTCPServer(Cfg.Telnet.Host, Cfg.Telnet.Port, log) - FlexClient := NewFlexClient(*repo, *TCPServer, log) + FlexClient := NewFlexClient(*fRepo, *TCPServer, log) TCPClient := NewTCPClient(*Cfg, TCPServer, FlexClient, log) + HTTPServer := NewHTTPServer(*cRepo, *fRepo, log) + + sigCh := make(chan os.Signal, 1) + signal.Notify(sigCh, syscall.SIGHUP, syscall.SIGINT, syscall.SIGQUIT, syscall.SIGTERM) go FlexClient.StartFlexClient() go TCPClient.StartClient() go TCPServer.StartServer() - select {} + go HTTPServer.StartHTTPServer() + + for sig := range sigCh { + log.Infof("received signal: %v, shutting down TCP Client.", sig) + + TCPClient.Close() + + if err := fRepo.db.Close(); err != nil { + log.Error("failed to close the database connection properly") + os.Exit(1) + } + + if err := cRepo.db.Close(); err != nil { + log.Error("failed to close Log4OM database connection properly") + os.Exit(1) + } + + os.Exit(0) + } } diff --git a/spot.go b/spot.go index d52660a..4ead021 100644 --- a/spot.go +++ b/spot.go @@ -25,7 +25,6 @@ type TelnetSpot struct { NewBand bool NewMode bool CallsignWorked bool - SpotChan chan TelnetSpot } func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChan chan TelnetSpot, log *log.Logger) { @@ -49,7 +48,7 @@ func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChan chan TelnetSp spot.NewMode = false spot.NewDXCC = false - contactRepo := NewContactsRepository(Cfg.SQLite.SQLitePath, log) + contactRepo := NewLog4OMContactsRepository(Cfg.SQLite.SQLitePath, log) defer contactRepo.db.Close() diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..43366eb --- /dev/null +++ b/templates/home.html @@ -0,0 +1,43 @@ + + + + + + + + FlexDXCluster DashBoard + + + +
+
+
+
+
Spots
+
Current number of spots
+
+
+
+
+
+
Top Spotters
+

+
+
+
+
+
+ + + diff --git a/templates/spot.html b/templates/spot.html new file mode 100644 index 0000000..c6168f7 --- /dev/null +++ b/templates/spot.html @@ -0,0 +1,31 @@ +{{define "spot"}} + + + + + + + + + + + + + + {{ range .}} + + + + + + + + + + + {{ end }} + +
DXSpotterFreqBandModeUTC TimeComment
{{ .DX }}{{ .SpotterCallsign }}{{ .FrequencyMhz }}{{ .Band }}{{ .Mode }}{{ .UTCTime }}{{ .Comment }}
+{{end}} + + diff --git a/templates/spotCount.html b/templates/spotCount.html new file mode 100644 index 0000000..9a202f2 --- /dev/null +++ b/templates/spotCount.html @@ -0,0 +1,5 @@ +{{ define "spotCount" }} + +{{ . }} + +{{ end }} \ No newline at end of file diff --git a/templates/spotters.html b/templates/spotters.html new file mode 100644 index 0000000..93d6a74 --- /dev/null +++ b/templates/spotters.html @@ -0,0 +1,9 @@ +{{ define "spotters" }} + +{{ range.}} + +{{ .Spotter }}: {{ .NumberofSpots }} spots
+ +{{ end }} + +{{ end }}